summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-03-05 17:47:38 +0000
committerChris Lattner <sabre@nondot.org>2005-03-05 17:47:38 +0000
commitf246ef3e2f22740ee8ff47cd2568a605a360f0e0 (patch)
treed216be3da3dfd09d7d6b41a38ad76be2d34d3dae /llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp
parent02f0d7bcc9699e616a880747165e954ad0164097 (diff)
downloadbcm5719-llvm-f246ef3e2f22740ee8ff47cd2568a605a360f0e0.tar.gz
bcm5719-llvm-f246ef3e2f22740ee8ff47cd2568a605a360f0e0.zip
don't break the build on 32-bit hosts.
llvm-svn: 20455
Diffstat (limited to 'llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp')
-rw-r--r--llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp b/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp
index 3d2b354b0b3..7a4df2bd351 100644
--- a/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp
+++ b/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp
@@ -31,8 +31,8 @@
using namespace llvm;
//These describe LDAx
-static const int64_t IMM_LOW = 0xffffffffffff8000;
-static const int IMM_HIGH = 0x0000000000007fff;
+static const int64_t IMM_LOW = 0xffffffffffff8000LL;
+static const int IMM_HIGH = 0x0000000000007fffLL;
static const int IMM_MULT = 65536;
static long getUpper16(long l)
OpenPOWER on IntegriCloud