diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-06-14 06:08:32 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-06-14 06:08:32 +0000 |
commit | f5b5c5156c0ac6250d2980f51e47145096851d6f (patch) | |
tree | 879a05c985d1b70fb672357fa262edfe49048ad5 /test | |
parent | 79abd1c27cf3436b94dc15adedf2e33167f96a8e (diff) |
Implement Jakob's suggestion on how to detect fall thought without calling
AnalyzeBranch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132981 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/Thumb2/machine-licm.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/Thumb2/machine-licm.ll b/test/CodeGen/Thumb2/machine-licm.ll index 2468aa6cab..ee054a165a 100644 --- a/test/CodeGen/Thumb2/machine-licm.ll +++ b/test/CodeGen/Thumb2/machine-licm.ll @@ -13,7 +13,7 @@ entry: br i1 %0, label %return, label %bb.nph bb.nph: ; preds = %entry -; CHECK: LBB0_1: +; CHECK: BB#1 ; CHECK: movw r[[R2:[0-9]+]], :lower16:L_GV$non_lazy_ptr ; CHECK: movt r[[R2]], :upper16:L_GV$non_lazy_ptr ; CHECK: ldr{{(.w)?}} r[[R2b:[0-9]+]], [r[[R2]] @@ -21,7 +21,7 @@ bb.nph: ; preds = %entry ; CHECK: LBB0_2 ; CHECK-NOT: LCPI0_0: -; PIC: LBB0_1: +; PIC: BB#1 ; PIC: movw r[[R2:[0-9]+]], :lower16:(L_GV$non_lazy_ptr-(LPC0_0+4)) ; PIC: movt r[[R2]], :upper16:(L_GV$non_lazy_ptr-(LPC0_0+4)) ; PIC: add r[[R2]], pc |