[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Mar 5 09:47:56 PST 2005



Changes in directory llvm/lib/Target/Alpha:

AlphaRegisterInfo.cpp updated: 1.15 -> 1.16
---
Log message:

don't break the build on 32-bit hosts.


---
Diffs of the changes:  (+2 -2)

 AlphaRegisterInfo.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp
diff -u llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp:1.15 llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp:1.16
--- llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp:1.15	Sat Mar  5 09:30:33 2005
+++ llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp	Sat Mar  5 11:47:38 2005
@@ -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)






More information about the llvm-commits mailing list