Add missing 'break'.
authorJim Grosbach <grosbach@apple.com>
Thu, 18 Aug 2011 16:08:39 +0000 (16:08 +0000)
committerJim Grosbach <grosbach@apple.com>
Thu, 18 Aug 2011 16:08:39 +0000 (16:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137941 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/AsmParser/ARMAsmParser.cpp

index f89968f670bc198329607c9a19754bcdcdbb452c..44c7a0a8d61cb7be4743a6dd2f033ff3bf48c4fe 100644 (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);
     // If the conditional is AL, we really want tB.
     if (Inst.getOperand(1).getImm() == ARMCC::AL)
       Inst.setOpcode(ARM::tB);
+    break;
   }
 }
 
   }
 }