diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1996-02-14 14:07:05 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1996-02-14 14:07:05 +0000 |
commit | f4558646ab00394c87c5a86713acfd9911108e26 (patch) | |
tree | 552340b3ae2876d1c20dc3ae8959f6897d6f5d0e | |
parent | 05c0b40505d38c9d97a96e3044c970ffcae58fc1 (diff) | |
download | gcc-f4558646ab00394c87c5a86713acfd9911108e26.zip gcc-f4558646ab00394c87c5a86713acfd9911108e26.tar.gz gcc-f4558646ab00394c87c5a86713acfd9911108e26.tar.bz2 |
Use HOST_WIDE_INT, not long long
From-SVN: r11273
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 4 |
1 files 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 |