From: Richard Kenner Date: Fri, 25 Mar 1994 22:02:56 +0000 (-0500) Subject: (expand_expr, case ABS_EXPR): Compare with 0 of proper mode. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3d0f0ad043e5469b9149cb56dc4d17313c2a768e;p=gcc.git (expand_expr, case ABS_EXPR): Compare with 0 of proper mode. From-SVN: r6901 --- diff --git a/gcc/expr.c b/gcc/expr.c index 84883e3862e..10c7c02459b 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -5096,7 +5096,7 @@ expand_expr (exp, target, tmode, modifier) NULL_RTX, op1); else { - temp = compare_from_rtx (target, const0_rtx, GE, 0, mode, + temp = compare_from_rtx (target, CONST0_RTX (mode), GE, 0, mode, NULL_RTX, 0); if (temp == const1_rtx) return target;