From f4558646ab00394c87c5a86713acfd9911108e26 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Wed, 14 Feb 1996 14:07:05 +0000 Subject: [PATCH] Use HOST_WIDE_INT, not long long From-SVN: r11273 --- gcc/config/rs6000/rs6000.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 89b9cba..4e870c9 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 -- 2.7.4