From 49d060d774950223dc4acbf852f21652095db37a Mon Sep 17 00:00:00 2001 From: revitale Date: Tue, 4 Sep 2007 12:11:11 +0000 Subject: Add new fp flags: -fassociative-math and -freciprocal-math git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128075 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree-tailcall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/tree-tailcall.c') 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; -- cgit v1.2.1