(fold_convert): Add missing cast to HOST_WIDE_INT.
From-SVN: r2218
This commit is contained in:
parent
01ca1b9182
commit
1f9dfb724b
@ -1520,7 +1520,7 @@ fold_convert (t, arg1)
|
||||
if (d >= (REAL_VALUE_TYPE) half_word * half_word / 2)
|
||||
{
|
||||
low = d - (REAL_VALUE_TYPE) half_word * half_word / 2;
|
||||
low |= 1 << (HOST_BITS_PER_WIDE_INT - 1);
|
||||
low |= (HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT - 1);
|
||||
}
|
||||
else
|
||||
low = (HOST_WIDE_INT) d;
|
||||
|
Loading…
Reference in New Issue
Block a user