Add missing 'break'.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137941 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Grosbach 2011-08-18 16:08:39 +00:00
parent c4dcf323cc
commit 3ce23d3d87

View File

@ -3039,6 +3039,7 @@ processInstruction(MCInst &Inst,
// If the conditional is AL, we really want tB.
if (Inst.getOperand(1).getImm() == ARMCC::AL)
Inst.setOpcode(ARM::tB);
break;
}
}