daintyness

llvm-svn: 20955
This commit is contained in:
Duraid Madina 2005-03-31 07:36:43 +00:00
parent 73c2777a0e
commit 8106f12d33
1 changed files with 2 additions and 2 deletions

View File

@ -134,11 +134,11 @@ eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
MachineInstr *New;
if (Old->getOpcode() == IA64::ADJUSTCALLSTACKDOWN) {
New=BuildMI(IA64::ADDIMM22, 2, IA64::r12).addReg(IA64::r12)
.addImm(-Amount);
.addSImm(-Amount);
} else {
assert(Old->getOpcode() == IA64::ADJUSTCALLSTACKUP);
New=BuildMI(IA64::ADDIMM22, 2, IA64::r12).addReg(IA64::r12)
.addImm(Amount);
.addSImm(Amount);
}
// Replace the pseudo instruction with a new instruction...