aboutsummaryrefslogtreecommitdiff
path: root/gcc/jump.c
diff options
context:
space:
mode:
authorBrad Lucier <lucier@math.purdue.edu>2001-03-07 11:29:41 -0800
committerRichard Henderson <rth@gcc.gnu.org>2001-03-07 11:29:41 -0800
commitde6c59795844f185e1079034b9fa777fbc12ef5a (patch)
tree996aa9dfa54be0d228dde6e7394f9adf66f7c76c /gcc/jump.c
parent6822468a694e59639c0f97975a2f48951501fd37 (diff)
downloadgcc-de6c59795844f185e1079034b9fa777fbc12ef5a.zip
gcc-de6c59795844f185e1079034b9fa777fbc12ef5a.tar.gz
gcc-de6c59795844f185e1079034b9fa777fbc12ef5a.tar.bz2
Brad's -ffast-math breakup.
From-SVN: r40300
Diffstat (limited to 'gcc/jump.c')
-rw-r--r--gcc/jump.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/jump.c b/gcc/jump.c
index 544c16b..f6f524e 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