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/config/alpha | |
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/config/alpha')
-rw-r--r-- | gcc/config/alpha/alpha.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 25d7d3b503f..a9c2e85faca 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -1678,7 +1678,7 @@ alpha_emit_conditional_branch (code) if (alpha_compare.fp_p) { cmp_mode = DFmode; - if (flag_fast_math) + if (flag_unsafe_math_optimizations) { /* When we are not as concerned about non-finite values, and we are comparing against zero, we can branch directly. */ @@ -1879,7 +1879,7 @@ alpha_emit_conditional_move (cmp, mode) = (GET_MODE (op0) == VOIDmode ? DImode : GET_MODE (op0)); enum machine_mode cmp_op_mode = fp_p ? DFmode : DImode; enum machine_mode cmov_mode = VOIDmode; - int local_fast_math = flag_fast_math; + int local_fast_math = flag_unsafe_math_optimizations; rtx tem; /* Zero the operands. */ |