]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR target/57756 (Function target attribute is retaining state of previously seen...
authorSriraman Tallam <tmsriram@google.com>
Wed, 23 Oct 2013 21:13:50 +0000 (21:13 +0000)
committerSriraman Tallam <tmsriram@gcc.gnu.org>
Wed, 23 Oct 2013 21:13:50 +0000 (21:13 +0000)
PR target/57756

Replace further references to global_options in functions
ix86_option_override_internal and ix86_valid_target_attribute_tree
in config/i386/i386.c.

PR target/57756
* config/i386/i386.c (ix86_option_override_internal):
Change TARGET_SSE2 to TARGET_SSE2_P (opts->...)
(ix86_valid_target_attribute_tree):
Change TARGET_64BIT to TARGET_64BIT_P (opts->...)
Change TARGET_SSE to TARGET_SSE_P (opts->...)

From-SVN: r203991

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

index 5a51c3ae3961fe2940f25585fa946333eef2b576..60eecba5958272f14f6a1d9cc4cb3ca13969a356 100644 (file)
@@ -1,3 +1,12 @@
+2013-10-23  Sriraman Tallam  <tmsriram@google.com>
+
+       PR target/57756
+       * config/i386/i386.c (ix86_option_override_internal):
+       Change TARGET_SSE2 to TARGET_SSE2_P (opts->...)
+       (ix86_valid_target_attribute_tree):
+       Change TARGET_64BIT to TARGET_64BIT_P (opts->...)
+       Change TARGET_SSE to TARGET_SSE_P (opts->...)
+
 2013-10-23  Andrew MacLeod  <amacleod@redhat.com>
 
        * tree-ssa-loop.h: Remove include files.
 
 2013-10-17  Sriraman Tallam  <tmsriram@google.com>
 
+       PR target/57756
        * opth-gen.awk: Define target_flags_explicit.
 
 2013-10-17  Michael Meissner  <meissner@linux.vnet.ibm.com>
index 22341eeca6ceeca76797e8dc5e0909dec7198c0d..25c63c7749a94addf57c7b02ab8f121746e3a35d 100644 (file)
@@ -3798,7 +3798,7 @@ ix86_option_override_internal (bool main_args_p,
      codegen.  We may switch to 387 with -ffast-math for size optimized
      functions. */
   else if (fast_math_flags_set_p (&global_options)
-          && TARGET_SSE2)
+          && TARGET_SSE2_P (opts->x_ix86_isa_flags))
     ix86_fpmath = FPMATH_SSE;
   else
     opts->x_ix86_fpmath = TARGET_FPMATH_DEFAULT_P (opts->x_ix86_isa_flags);
@@ -4553,7 +4553,8 @@ ix86_valid_target_attribute_tree (tree args,
       /* If fpmath= is not set, and we now have sse2 on 32-bit, use it.  */
       if (enum_opts_set.x_ix86_fpmath)
        opts_set->x_ix86_fpmath = (enum fpmath_unit) 1;
-      else if (!TARGET_64BIT && TARGET_SSE)
+      else if (!TARGET_64BIT_P (opts->x_ix86_isa_flags)
+              && TARGET_SSE_P (opts->x_ix86_isa_flags))
        {
          opts->x_ix86_fpmath = (enum fpmath_unit) (FPMATH_SSE | FPMATH_387);
          opts_set->x_ix86_fpmath = (enum fpmath_unit) 1;