From: Richard Kenner Date: Wed, 23 Sep 1992 23:26:03 +0000 (-0400) Subject: (simplify_unary_operation, case SIGN_EXTEND): Use HOST_BITS_PER_WIDE_INT, X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f12564b4c0bfb9a6c7ed634e5713631be4c15d63;p=gcc.git (simplify_unary_operation, case SIGN_EXTEND): Use HOST_BITS_PER_WIDE_INT, not HOST_BITS_PER_INT. From-SVN: r2219 --- diff --git a/gcc/cse.c b/gcc/cse.c index b5a6edc5732..7f1ff1c7b88 100644 --- a/gcc/cse.c +++ b/gcc/cse.c @@ -2925,7 +2925,7 @@ simplify_unary_operation (code, mode, op, op_mode) abort (); val = arg0; } - else if (GET_MODE_BITSIZE (op_mode) < HOST_BITS_PER_INT) + else if (GET_MODE_BITSIZE (op_mode) < HOST_BITS_PER_WIDE_INT) { val = arg0 & ~((HOST_WIDE_INT) (-1) << GET_MODE_BITSIZE (op_mode));