1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

Fix -Asserts warning.

llvm-svn: 80338
This commit is contained in:
Daniel Dunbar 2009-08-28 05:47:56 +00:00
parent 4dbe7896a5
commit 1b35869d3d

View File

@ -1058,12 +1058,11 @@ ARMBaseRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II,
return; return;
const TargetInstrDesc &Desc = MI.getDesc(); const TargetInstrDesc &Desc = MI.getDesc();
unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
// If we get here, the immediate doesn't fit into the instruction. We folded // If we get here, the immediate doesn't fit into the instruction. We folded
// as much as possible above, handle the rest, providing a register that is // as much as possible above, handle the rest, providing a register that is
// SP+LargeImm. // SP+LargeImm.
assert((Offset || AddrMode == ARMII::AddrMode4) && assert((Offset || (Desc.TSFlags & ARMII::AddrModeMask) == ARMII::AddrMode4) &&
"This code isn't needed if offset already handled!"); "This code isn't needed if offset already handled!");
// Insert a set of r12 with the full address: r12 = sp + offset // Insert a set of r12 with the full address: r12 = sp + offset