diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-05 17:47:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-05 17:47:38 +0000 |
commit | f246ef3e2f22740ee8ff47cd2568a605a360f0e0 (patch) | |
tree | d216be3da3dfd09d7d6b41a38ad76be2d34d3dae /llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp | |
parent | 02f0d7bcc9699e616a880747165e954ad0164097 (diff) | |
download | bcm5719-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.cpp | 4 |
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) |