diff options
author | David Goodwin <david_goodwin@apple.com> | 2009-07-10 15:33:46 +0000 |
---|---|---|
committer | David Goodwin <david_goodwin@apple.com> | 2009-07-10 15:33:46 +0000 |
commit | c9b1efd515d894818562548afa85565b362b534b (patch) | |
tree | 9badf3f29d134b6da73a6188dbdd1a3662135004 /llvm/lib/Target/ARM/Thumb2InstrInfo.cpp | |
parent | 0006349f4d15850a907eb3e85014a308d60a6c3e (diff) | |
download | bcm5719-llvm-c9b1efd515d894818562548afa85565b362b534b.tar.gz bcm5719-llvm-c9b1efd515d894818562548afa85565b362b534b.zip |
t2LDM_RET does not fall-through.
llvm-svn: 75250
Diffstat (limited to 'llvm/lib/Target/ARM/Thumb2InstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/Thumb2InstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp b/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp index bd37ae6eda1..b82fb3fe9fc 100644 --- a/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp +++ b/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp @@ -72,7 +72,7 @@ Thumb2InstrInfo::BlockHasNoFallThrough(const MachineBasicBlock &MBB) const { // FIXME switch (MBB.back().getOpcode()) { case ARM::t2BX_RET: - // case ARM::LDM_RET: + case ARM::t2LDM_RET: case ARM::t2B: // Uncond branch. case ARM::t2BR_JTr: // Jumptable branch. case ARM::t2BR_JTm: // Jumptable branch through mem. |