]> gcc.gnu.org Git - gcc.git/commitdiff
i386.c (override_options): Revert last change wrt fancy 387 math.
authorRichard Henderson <rth@redhat.com>
Thu, 23 Dec 2004 10:38:14 +0000 (02:38 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Thu, 23 Dec 2004 10:38:14 +0000 (02:38 -0800)
        * config/i386/i386.c (override_options): Revert last change
        wrt fancy 387 math.

From-SVN: r92547

gcc/ChangeLog
gcc/config/i386/i386.c

index 3ddbf232ac63a593f8c62509edd441123b32ed02..0872bf6e6165c4797452881685b82f01cf0bf6d3 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-23  Richard Henderson  <rth@redhat.com>
+
+       * config/i386/i386.c (override_options): Revert last change
+       wrt fancy 387 math.
+
 2004-12-23  Richard Henderson  <rth@redhat.com>
 
        * config/alpha/alpha.md (one_cmpl<mode>2, and<mode>3, andnot<mode>3,
index fa6c3b4cbf18d06783485e547b8481de2e41c02b..c146b740132ce7049dad81f84ceeaa1718b183aa 100644 (file)
@@ -1469,8 +1469,7 @@ override_options (void)
 
   /* If the architecture always has an FPU, turn off NO_FANCY_MATH_387,
      since the insns won't need emulation.  */
-  if (!(target_flags_explicit & MASK_NO_FANCY_MATH_387)
-      && (x86_arch_always_fancy_math_387 & (1 << ix86_arch)))
+  if (x86_arch_always_fancy_math_387 & (1 << ix86_arch))
     target_flags &= ~MASK_NO_FANCY_MATH_387;
 
   /* Likewise, if the target doesn't have a 387, or we've specified
This page took 0.119778 seconds and 5 git commands to generate.