diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-07 19:29:41 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-07 19:29:41 +0000 |
commit | 7f3be425ec91d3479f6669c125476f578c497524 (patch) | |
tree | 996aa9dfa54be0d228dde6e7394f9adf66f7c76c /gcc/jump.c | |
parent | 8c74272dfcb3208d767bbfecf204aea883617225 (diff) | |
download | gcc-7f3be425ec91d3479f6669c125476f578c497524.tar.gz |
Brad's -ffast-math breakup.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40300 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/jump.c')
-rw-r--r-- | gcc/jump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/jump.c b/gcc/jump.c index 544c16bb75d..f6f524e5e33 100644 --- a/gcc/jump.c +++ b/gcc/jump.c @@ -1785,7 +1785,7 @@ reversed_comparison_code_parts (code, arg0, arg1, insn) /* We don't have safe way to reverse these yet - we would need ordered compares that may not trap. */ if (TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT - || flag_fast_math) + || flag_unsafe_math_optimizations) return reverse_condition_maybe_unordered (code); return UNKNOWN; default: @@ -1794,7 +1794,7 @@ reversed_comparison_code_parts (code, arg0, arg1, insn) /* In case we give up IEEE compatibility, all comparisons are reversible. */ if (TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT - || flag_fast_math) + || flag_unsafe_math_optimizations) return reverse_condition (code); if (GET_MODE_CLASS (mode) == MODE_CC @@ -4061,7 +4061,7 @@ rtx_equal_for_thread_p (x, y, yinsn) pessimistic, but this pass would only rarely do anything for FP anyway. */ if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT - && FLOAT_MODE_P (GET_MODE (x)) && ! flag_fast_math) + && FLOAT_MODE_P (GET_MODE (x)) && ! flag_unsafe_math_optimizations) return 0; /* For commutative operations, the RTX match if the operand match in any |