diff options
author | Sriraman Tallam <tmsriram@google.com> | 2013-10-23 21:13:50 +0000 |
---|---|---|
committer | Sriraman Tallam <tmsriram@gcc.gnu.org> | 2013-10-23 21:13:50 +0000 |
commit | 33e7f993d1c0be878a778b227d744d3b389c66d0 (patch) | |
tree | 9329ab26fdcbc0e5974bff914b878cfca6e0702e | |
parent | e2fbf4c53d5ebe7638695797671dcef927cd73d7 (diff) | |
download | gcc-33e7f993d1c0be878a778b227d744d3b389c66d0.zip gcc-33e7f993d1c0be878a778b227d744d3b389c66d0.tar.gz gcc-33e7f993d1c0be878a778b227d744d3b389c66d0.tar.bz2 |
re PR target/57756 (Function target attribute is retaining state of previously seen function)
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
-rw-r--r-- | gcc/ChangeLog | 10 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 5 |
2 files changed, 13 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5a51c3a..60eecba 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. @@ -680,6 +689,7 @@ 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> diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 22341ee..25c63c7 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -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; |