diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2006-05-17 19:24:49 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2006-05-17 19:24:49 +0000 |
commit | 0f524f2050cf0cd1c1858119e6f672a3c271eaf2 (patch) | |
tree | e474e7ce0feb17270ce79e69fc9b8111351a6dea /llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp | |
parent | 446dbcb5e465973ab9a3b00683fe0cc84c66b03b (diff) | |
download | bcm5719-llvm-0f524f2050cf0cd1c1858119e6f672a3c271eaf2.tar.gz bcm5719-llvm-0f524f2050cf0cd1c1858119e6f672a3c271eaf2.zip |
Fix call_adj.ll
llvm-svn: 28360
Diffstat (limited to 'llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp')
-rw-r--r-- | llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp b/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp index 55a98aa69e0..4ae8761fecb 100644 --- a/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp +++ b/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp @@ -166,7 +166,7 @@ eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB, // '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 |