Use HOST_WIDE_INT, not long long
From-SVN: r11273
This commit is contained in:
parent
05c0b40505
commit
f4558646ab
@ -5330,7 +5330,7 @@
|
||||
else
|
||||
{
|
||||
low = INTVAL (operands[1]) & 0xffffffff;
|
||||
high = (unsigned long long) INTVAL (operands[1]) >> 32;
|
||||
high = (HOST_WIDE_INT) INTVAL (operands[1]) >> 32;
|
||||
}
|
||||
|
||||
if (! TARGET_POWERPC64)
|
||||
@ -5487,7 +5487,7 @@
|
||||
else
|
||||
{
|
||||
low = INTVAL (operands[1]) & 0xffffffff;
|
||||
high = (unsigned long long) INTVAL (operands[1]) >> 32;
|
||||
high = (HOST_WIDE_INT) INTVAL (operands[1]) >> 32;
|
||||
}
|
||||
|
||||
if ((high + 0x8000) < 0x10000
|
||||
|
Loading…
Reference in New Issue
Block a user