(simplify_unary_operation, case SIGN_EXTEND): Use HOST_BITS_PER_WIDE_INT,

not HOST_BITS_PER_INT.

From-SVN: r2219
This commit is contained in:
Richard Kenner 1992-09-23 19:26:03 -04:00
parent 1f9dfb724b
commit f12564b4c0
1 changed files with 1 additions and 1 deletions

View File

@ -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));