• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修訂473b0579e316ebd956ace07c6bcb0746aa371b9f (tree)
時間2018-12-23 23:31:04
作者Yoshinori Sato <ysato@user...>
CommiterYoshinori Sato

Log Message

add rxv3-dfpu

Change Summary

差異

--- a/gas/config/rx-defs.h
+++ b/gas/config/rx-defs.h
@@ -40,7 +40,8 @@ enum rx_cpu_types
4040 RX200,
4141 RX100,
4242 RXV2,
43- RXV3
43+ RXV3,
44+ RXV3FPU,
4445 };
4546
4647 extern int rx_pid_register;
--- a/gas/config/tc-rx.c
+++ b/gas/config/tc-rx.c
@@ -123,6 +123,7 @@ struct cpu_type cpu_type_list[] =
123123 {"rx610", RX610, 0},
124124 {"rxv2", RXV2, E_FLAG_RX_V2},
125125 {"rxv3", RXV3, E_FLAG_RX_V3},
126+ {"rxv3-dfpu", RXV3FPU, E_FLAG_RX_V3},
126127 };
127128
128129 int
@@ -217,7 +218,7 @@ md_show_usage (FILE * stream)
217218 fprintf (stream, _(" --mrelax\n"));
218219 fprintf (stream, _(" --mpid\n"));
219220 fprintf (stream, _(" --mint-register=<value>\n"));
220- fprintf (stream, _(" --mcpu=<rx100|rx200|rx600|rx610|rxv2|rxv3>\n"));
221+ fprintf (stream, _(" --mcpu=<rx100|rx200|rx600|rx610|rxv2|rxv3|rxv3-dfpu>\n"));
221222 fprintf (stream, _(" --mno-allow-string-insns"));
222223 }
223224