diff options
author | Revital Eres <eres@il.ibm.com> | 2007-09-04 12:11:11 +0000 |
---|---|---|
committer | Revital Eres <revitale@gcc.gnu.org> | 2007-09-04 12:11:11 +0000 |
commit | a1a826110720eda37c73f829daa4ee243ee953f5 (patch) | |
tree | 67cecf461cc930540853bd8eb0d4f19b3b21b0ce /gcc/tree-tailcall.c | |
parent | cea79118fa00faf811626e67209ca666468bc76f (diff) | |
download | gcc-a1a826110720eda37c73f829daa4ee243ee953f5.tar.gz |
Add new fp flags: -fassociative-math and -freciprocal-math
Co-Authored-By: R. Clint Whaley <whaley@cs.utsa.edu>
Co-Authored-By: Richard Guenther <rguenther@suse.de>
From-SVN: r128075
Diffstat (limited to 'gcc/tree-tailcall.c')
-rw-r--r-- | gcc/tree-tailcall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-tailcall.c b/gcc/tree-tailcall.c index 544b0e360f7..8651b60fc0d 100644 --- a/gcc/tree-tailcall.c +++ b/gcc/tree-tailcall.c @@ -297,7 +297,7 @@ process_assignment (tree ass, tree stmt, block_stmt_iterator call, tree *m, /* Accumulator optimizations will reverse the order of operations. We can only do that for floating-point types if we're assuming that addition and multiplication are associative. */ - if (!flag_unsafe_math_optimizations) + if (!flag_associative_math) if (FLOAT_TYPE_P (TREE_TYPE (DECL_RESULT (current_function_decl)))) return false; |