diff options
author | Richard Guenther <rguenther@suse.de> | 2012-10-01 14:15:00 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-10-01 14:15:00 +0000 |
commit | 4f39564266a2c44145e02cda4effd42a33cf66e9 (patch) | |
tree | 2ff5adf05279b21168febcc9a4a2584703d87085 | |
parent | 1fc1ef37ec3af1dfbd44030256f1405396188e23 (diff) | |
download | gcc-4f39564266a2c44145e02cda4effd42a33cf66e9.zip gcc-4f39564266a2c44145e02cda4effd42a33cf66e9.tar.gz gcc-4f39564266a2c44145e02cda4effd42a33cf66e9.tar.bz2 |
builtins.def (ATTR_MATHFN_FPROUNDING): Do not use no-vops with -frounding-math.
2012-10-01 Richard Guenther <rguenther@suse.de>
* builtins.def (ATTR_MATHFN_FPROUNDING): Do not use no-vops
with -frounding-math.
* builtin-attrs.def (ATTR_PURE_NOTHROW_NOVOPS_LIST): Remove.
(ATTR_PURE_NOTHROW_NOVOPS_LEAF_LIST): Likewise.
From-SVN: r191925
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/builtin-attrs.def | 4 | ||||
-rw-r--r-- | gcc/builtins.def | 2 |
3 files changed, 8 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 020892b..2684193 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2012-10-01 Richard Guenther <rguenther@suse.de> + + * builtins.def (ATTR_MATHFN_FPROUNDING): Do not use no-vops + with -frounding-math. + * builtin-attrs.def (ATTR_PURE_NOTHROW_NOVOPS_LIST): Remove. + (ATTR_PURE_NOTHROW_NOVOPS_LEAF_LIST): Likewise. + 2012-10-01 Eric Botcazou <ebotcazou@adacore.com> * tree.h (copy_mem_ref_info): Delete. diff --git a/gcc/builtin-attrs.def b/gcc/builtin-attrs.def index 9eb5e71..0c331fb 100644 --- a/gcc/builtin-attrs.def +++ b/gcc/builtin-attrs.def @@ -127,10 +127,6 @@ DEF_ATTR_TREE_LIST (ATTR_PURE_NOTHROW_LIST, ATTR_PURE, \ ATTR_NULL, ATTR_NOTHROW_LIST) DEF_ATTR_TREE_LIST (ATTR_PURE_NOTHROW_LEAF_LIST, ATTR_PURE, \ ATTR_NULL, ATTR_NOTHROW_LEAF_LIST) -DEF_ATTR_TREE_LIST (ATTR_PURE_NOTHROW_NOVOPS_LIST, ATTR_NOVOPS, \ - ATTR_NULL, ATTR_PURE_NOTHROW_LIST) -DEF_ATTR_TREE_LIST (ATTR_PURE_NOTHROW_NOVOPS_LEAF_LIST, ATTR_NOVOPS,\ - ATTR_NULL, ATTR_PURE_NOTHROW_LEAF_LIST) DEF_ATTR_TREE_LIST (ATTR_NORETURN_NOTHROW_LIST, ATTR_NORETURN, \ ATTR_NULL, ATTR_NOTHROW_LIST) DEF_ATTR_TREE_LIST (ATTR_NORETURN_NOTHROW_LEAF_LIST, ATTR_NORETURN,\ diff --git a/gcc/builtins.def b/gcc/builtins.def index 8493ca4..69000bc 100644 --- a/gcc/builtins.def +++ b/gcc/builtins.def @@ -163,7 +163,7 @@ along with GCC; see the file COPYING3. If not see memory. */ #undef ATTR_MATHFN_FPROUNDING #define ATTR_MATHFN_FPROUNDING (flag_rounding_math ? \ - ATTR_PURE_NOTHROW_NOVOPS_LEAF_LIST : ATTR_CONST_NOTHROW_LEAF_LIST) + ATTR_PURE_NOTHROW_LEAF_LIST : ATTR_CONST_NOTHROW_LEAF_LIST) /* Define an attribute list for math functions that are normally "impure" because some of them may write into global memory for |