diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-09-16 00:31:32 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-09-16 00:31:32 +0000 |
commit | ea606bb76b9922f67b678ea48645cdc9bfa0305b (patch) | |
tree | 0fc58e1d9e3c04b376a349a72a39828c10ed8926 | |
parent | 9d4ebc0eb80c770aab5b51ca459748a6ac8f1699 (diff) |
Add missing break.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114048 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMExpandPseudoInsts.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMExpandPseudoInsts.cpp b/lib/Target/ARM/ARMExpandPseudoInsts.cpp index 4a3402fff1..7bf4efba7b 100644 --- a/lib/Target/ARM/ARMExpandPseudoInsts.cpp +++ b/lib/Target/ARM/ARMExpandPseudoInsts.cpp @@ -638,6 +638,7 @@ bool ARMExpandPseudo::ExpandMBB(MachineBasicBlock &MBB) { .addReg(OddSrc, getKillRegState(SrcIsKill))); TransferImpOps(MI, Even, Odd); MI.eraseFromParent(); + break; } case ARM::VLDMQ: { |