(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:
parent
1f9dfb724b
commit
f12564b4c0
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user