From: Jim Grosbach Date: Thu, 18 Aug 2011 16:08:39 +0000 (+0000) Subject: Add missing 'break'. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=3ce23d3d87d1ca437acb65ac01fac1c486507280;p=oota-llvm.git Add missing 'break'. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137941 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index f89968f670b..44c7a0a8d61 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; } }