Fix else if -> if in store machinery.

llvm-svn: 116628
This commit is contained in:
Eric Christopher 2010-10-15 22:32:37 +00:00
parent 6358d6866d
commit a3e64c1791
1 changed files with 1 additions and 1 deletions

View File

@ -838,7 +838,7 @@ bool ARMFastISel::ARMEmitStore(EVT VT, unsigned SrcReg,
TLI.getRegClassFor(VT), TM.getRegisterInfo());
// The thumb addressing mode has operands swapped from the arm addressing
// mode, the floating point one only has two operands.
if (isFloat || isThumb)
else if (isFloat || isThumb)
AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
TII.get(StrOpc))
.addReg(SrcReg).addReg(Base.Reg).addImm(Offset));