aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/bx_fold.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/bx_fold.ll')
-rw-r--r--test/CodeGen/ARM/bx_fold.ll31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/CodeGen/ARM/bx_fold.ll b/test/CodeGen/ARM/bx_fold.ll
deleted file mode 100644
index f6651ae8004e..000000000000
--- a/test/CodeGen/ARM/bx_fold.ll
+++ /dev/null
@@ -1,31 +0,0 @@
-; RUN: llc < %s -mtriple=armv5t-apple-darwin | FileCheck %s
-
-define void @test(i32 %Ptr, i8* %L) {
-entry:
- br label %bb1
-
-bb: ; preds = %bb1
- %gep.upgrd.1 = zext i32 %indvar to i64 ; <i64> [#uses=1]
- %tmp7 = getelementptr i8, i8* %L, i64 %gep.upgrd.1 ; <i8*> [#uses=1]
- store i8 0, i8* %tmp7
- %indvar.next = add i32 %indvar, 1 ; <i32> [#uses=1]
- br label %bb1
-
-bb1: ; preds = %bb, %entry
- %indvar = phi i32 [ 0, %entry ], [ %indvar.next, %bb ] ; <i32> [#uses=3]
- %i.0 = bitcast i32 %indvar to i32 ; <i32> [#uses=2]
- %tmp = tail call i32 (...) @bar( ) ; <i32> [#uses=1]
- %tmp2 = add i32 %i.0, %tmp ; <i32> [#uses=1]
- %Ptr_addr.0 = sub i32 %Ptr, %tmp2 ; <i32> [#uses=0]
- %tmp12 = icmp eq i32 %i.0, %Ptr ; <i1> [#uses=1]
- %tmp12.not = xor i1 %tmp12, true ; <i1> [#uses=1]
- %bothcond = and i1 %tmp12.not, false ; <i1> [#uses=1]
- br i1 %bothcond, label %bb, label %bb18
-
-bb18: ; preds = %bb1
-; CHECK-NOT: bx
-; CHECK: pop
- ret void
-}
-
-declare i32 @bar(...)