diff options
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index 219998b..9b90d47 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -2489,7 +2489,7 @@ expand_unop (enum machine_mode mode, optab unoptab, rtx op0, rtx target, if (unoptab->code == NEG) { /* Try negating floating point values by flipping the sign bit. */ - if (SCALAR_FLOAT_MODE_P (class)) + if (SCALAR_FLOAT_MODE_P (mode)) { temp = expand_absneg_bit (NEG, mode, op0, target); if (temp) @@ -3552,7 +3552,7 @@ prepare_cmp_insn (rtx *px, rtx *py, enum rtx_code *pcomparison, rtx size, return; } - gcc_assert (SCALAR_FLOAT_MODE_P (class)); + gcc_assert (SCALAR_FLOAT_MODE_P (mode)); prepare_float_lib_cmp (px, py, pcomparison, pmode, punsignedp); } |