(fold_convert): Add missing cast to HOST_WIDE_INT.

From-SVN: r2218
This commit is contained in:
Richard Kenner 1992-09-23 19:24:45 -04:00
parent 01ca1b9182
commit 1f9dfb724b
1 changed files with 1 additions and 1 deletions

View File

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