From 74b146981cacdc322b9630bbd5bf0d5e7f840d13 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 22 Nov 2005 21:25:52 +0000 Subject: optabs.c (expand_unop): Call SCALAR_FLOAT_MODE_P on a mode, not a mode_class. * optabs.c (expand_unop): Call SCALAR_FLOAT_MODE_P on a mode, not a mode_class. (prepare_cmp_insn): Likewise. From-SVN: r107375 --- gcc/optabs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/optabs.c') 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); } -- cgit v1.1