diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-28 18:07:41 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-28 18:07:41 +0000 |
commit | 31d8e5da05c08fd16682a2c2708fce0e103e4a20 (patch) | |
tree | c107de05e760bf64a57120b1b3c981b1c9b40176 /gcc/config/rs6000 | |
parent | ae1526b250c483e155ba69764a909da26bf072bd (diff) | |
download | ppe42-gcc-31d8e5da05c08fd16682a2c2708fce0e103e4a20.tar.gz ppe42-gcc-31d8e5da05c08fd16682a2c2708fce0e103e4a20.zip |
2002-06-27 Aldy Hernandez <aldyh@redhat.com>
Revert:
* config/rs6000/rs6000.c (rs6000_override_options): Move
*SUBTARGET_OVERRIDE_OPTIONS before the -m options.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55068 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/rs6000')
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 48c8748b847..1fdb8dff4bc 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -544,13 +544,6 @@ rs6000_override_options (default_cpu) } #endif -#ifdef SUBTARGET_OVERRIDE_OPTIONS - SUBTARGET_OVERRIDE_OPTIONS; -#endif -#ifdef SUBSUBTARGET_OVERRIDE_OPTIONS - SUBSUBTARGET_OVERRIDE_OPTIONS; -#endif - /* Set debug flags */ if (rs6000_debug_name) { @@ -583,6 +576,13 @@ rs6000_override_options (default_cpu) /* Handle -mvrsave= option. */ rs6000_parse_vrsave_option (); +#ifdef SUBTARGET_OVERRIDE_OPTIONS + SUBTARGET_OVERRIDE_OPTIONS; +#endif +#ifdef SUBSUBTARGET_OVERRIDE_OPTIONS + SUBSUBTARGET_OVERRIDE_OPTIONS; +#endif + /* Handle -m(no-)longcall option. This is a bit of a cheap hack, using TARGET_OPTIONS to handle a toggle switch, but we're out of bits in target_flags so TARGET_SWITCHES cannot be used. |