From: Michael Meissner Date: Wed, 14 Feb 1996 14:07:05 +0000 (+0000) Subject: Use HOST_WIDE_INT, not long long X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f4558646ab00394c87c5a86713acfd9911108e26;p=gcc.git Use HOST_WIDE_INT, not long long From-SVN: r11273 --- diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 89b9cba6201..4e870c92d17 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -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