diff options
author | Joseph Myers <joseph@codesourcery.com> | 2011-04-07 22:48:01 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2011-04-07 22:48:01 +0100 |
commit | 5f2c36e1e89a3cc169ebe97de4d4ff41ba7043eb (patch) | |
tree | ba41c2a2d2aa42fbe59ea89b987c958465aa5d1f | |
parent | d0bb79ac89f08dbc31be9d0427e9a16ea16fa37d (diff) | |
download | gcc-5f2c36e1e89a3cc169ebe97de4d4ff41ba7043eb.zip gcc-5f2c36e1e89a3cc169ebe97de4d4ff41ba7043eb.tar.gz gcc-5f2c36e1e89a3cc169ebe97de4d4ff41ba7043eb.tar.bz2 |
rx.opt (rx610, [...]): Use Enum not Name on EnumValue lines.
* config/rx/rx.opt (rx610, rx200, rx600): Use Enum not Name on
EnumValue lines.
From-SVN: r172149
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rx/rx.opt | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f54b864..780d46e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2011-04-07 Joseph Myers <joseph@codesourcery.com> + * config/rx/rx.opt (rx610, rx200, rx600): Use Enum not Name on + EnumValue lines. + +2011-04-07 Joseph Myers <joseph@codesourcery.com> + * config/m68k/m68k.c (m68k_handle_option): Don't handle OPT_m68000, OPT_mc68000, OPT_m68010, OPT_m68020, OPT_mc68020, OPT_m68030, OPT_m68040, OPT_m68060, OPT_m68302, OPT_m68332 and diff --git a/gcc/config/rx/rx.opt b/gcc/config/rx/rx.opt index b51ca3f..4a84effd 100644 --- a/gcc/config/rx/rx.opt +++ b/gcc/config/rx/rx.opt @@ -53,13 +53,13 @@ Enum Name(rx_cpu_types) Type(enum rx_cpu_types) EnumValue -Name(rx_cpu_types) String(rx610) Value(RX610) +Enum(rx_cpu_types) String(rx610) Value(RX610) EnumValue -Name(rx_cpu_types) String(rx200) Value(RX200) +Enum(rx_cpu_types) String(rx200) Value(RX200) EnumValue -Name(rx_cpu_types) String(rx600) Value(RX600) +Enum(rx_cpu_types) String(rx600) Value(RX600) ;--------------------------------------------------- |