]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
revert: rs6000.c (rs6000_override_options): Move *SUBTARGET_OVERRIDE_OPTIONS before...
authorAldy Hernandez <aldyh@redhat.com>
Fri, 28 Jun 2002 18:07:41 +0000 (18:07 +0000)
committerAldy Hernandez <aldyh@gcc.gnu.org>
Fri, 28 Jun 2002 18:07:41 +0000 (18:07 +0000)
2002-06-27  Aldy Hernandez  <aldyh@redhat.com>

        Revert:
        * config/rs6000/rs6000.c (rs6000_override_options): Move
        *SUBTARGET_OVERRIDE_OPTIONS before the -m options.

From-SVN: r55068

gcc/ChangeLog
gcc/config/rs6000/rs6000.c

index 6813ca9180743b5ca40dab63212b14ef5abb5ca0..9230aaa5c3ebbd6e7a74b10507d437d2f365193d 100644 (file)
@@ -1,3 +1,9 @@
+2002-06-27  Aldy Hernandez  <aldyh@redhat.com>
+
+       Revert:
+        * config/rs6000/rs6000.c (rs6000_override_options): Move
+        *SUBTARGET_OVERRIDE_OPTIONS before the -m options.
+
 2002-06-27  Aldy Hernandez  <aldyh@redhat.com>
 
         * config/rs6000/rs6000.c (altivec_expand_builtin): Move
index 48c8748b847bccad14312be9381a870920df1fca..1fdb8dff4bce6f285bd017f2d5c5549e30eb5a0f 100644 (file)
@@ -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.