Changes in directory llvm/lib/Target/Alpha:

AlphaRegisterInfo.cpp updated: 1.43 -> 1.44
---
Log message:

Fix call_adj.ll

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

 AlphaRegisterInfo.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp
diff -u llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp:1.43 
llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp:1.44
--- llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp:1.43    Thu May  4 12:52:23 2006
+++ llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp Wed May 17 14:24:49 2006
@@ -166,7 +166,7 @@
     // 'sub ESP, <amt>' and the adjcallstackdown instruction into 'add ESP,
     // <amt>'
     MachineInstr *Old = I;
-    unsigned Amount = Old->getOperand(0).getImmedValue();
+    uint64_t Amount = Old->getOperand(0).getImmedValue();
     if (Amount != 0) {
       // We need to keep the stack aligned properly.  To do this, we round the
       // amount of space needed for the outgoing arguments up to the next



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to