diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-08-18 16:08:39 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-08-18 16:08:39 +0000 |
commit | 3ce23d3d87d1ca437acb65ac01fac1c486507280 (patch) | |
tree | 3cc0257851fcc2119de57e6574e094d44c55fd75 /lib/Target/ARM/AsmParser/ARMAsmParser.cpp | |
parent | c4dcf323cc63e82fc0c3d9413ff074eff303c449 (diff) |
Add missing 'break'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137941 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/AsmParser/ARMAsmParser.cpp')
-rw-r--r-- | lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index f89968f670..44c7a0a8d6 100644 --- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -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; } } |