Use HOST_WIDE_INT, not long long
authorMichael Meissner <meissner@gcc.gnu.org>
Wed, 14 Feb 1996 14:07:05 +0000 (14:07 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Wed, 14 Feb 1996 14:07:05 +0000 (14:07 +0000)
From-SVN: r11273

gcc/config/rs6000/rs6000.md

index 89b9cba6201b56604e23234a84bb9fce817b124c..4e870c92d1777ddfe580637bc162c6d1bc433494 100644 (file)
       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)
   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