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 | 569d54d4fa4655eb9364c6072df42f8a1168a5fe (patch) | |
tree | 9614dc220c928e45bdd86f4caad4627260e642e8 /lib/Target/Alpha/AlphaRegisterInfo.cpp | |
parent | c21e6c979939624138196d161c809105acffc94c (diff) |
don't break the build on 32-bit hosts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20455 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaRegisterInfo.cpp')
-rw-r--r-- | lib/Target/Alpha/AlphaRegisterInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/Alpha/AlphaRegisterInfo.cpp b/lib/Target/Alpha/AlphaRegisterInfo.cpp index 3d2b354b0b..7a4df2bd35 100644 --- a/lib/Target/Alpha/AlphaRegisterInfo.cpp +++ b/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) |