Reinstate correct test, remove the real invalidated test.
authorDale Johannesen <dalej@apple.com>
Wed, 23 Jun 2010 18:56:06 +0000 (18:56 +0000)
committerDale Johannesen <dalej@apple.com>
Wed, 23 Jun 2010 18:56:06 +0000 (18:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106664 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/ARM/ifcvt6-tc.ll [deleted file]
test/CodeGen/ARM/ifcvt6.ll [new file with mode: 0644]

diff --git a/test/CodeGen/ARM/ifcvt6-tc.ll b/test/CodeGen/ARM/ifcvt6-tc.ll
deleted file mode 100644 (file)
index 40b32cc..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-; RUN: llc < %s -march=arm -mtriple=arm-apple-darwin | \
-; RUN:   grep cmpne | count 1
-; RUN: llc < %s -march=arm -mtriple=arm-apple-darwin | \
-; RUN:   grep bls | count 1
-; Here, tail call wins over eliminating branches.  It is 1 fewer instruction
-; and removes all stack accesses, so seems like a win.
-
-define void @foo(i32 %X, i32 %Y) {
-entry:
-       %tmp1 = icmp ult i32 %X, 4              ; <i1> [#uses=1]
-       %tmp4 = icmp eq i32 %Y, 0               ; <i1> [#uses=1]
-       %tmp7 = or i1 %tmp4, %tmp1              ; <i1> [#uses=1]
-       br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock
-
-cond_true:             ; preds = %entry
-       %tmp10 = tail call i32 (...)* @bar( )           ; <i32> [#uses=0]
-       ret void
-
-UnifiedReturnBlock:            ; preds = %entry
-       ret void
-}
-
-declare i32 @bar(...)
diff --git a/test/CodeGen/ARM/ifcvt6.ll b/test/CodeGen/ARM/ifcvt6.ll
new file mode 100644 (file)
index 0000000..e2c0ba3
--- /dev/null
@@ -0,0 +1,21 @@
+; RUN: llc < %s -march=arm -mtriple=arm-apple-darwin | \
+; RUN:   grep cmpne | count 1
+; RUN: llc < %s -march=arm -mtriple=arm-apple-darwin | \
+; RUN:   grep ldmiahi | count 1
+
+define void @foo(i32 %X, i32 %Y) {
+entry:
+       %tmp1 = icmp ult i32 %X, 4              ; <i1> [#uses=1]
+       %tmp4 = icmp eq i32 %Y, 0               ; <i1> [#uses=1]
+       %tmp7 = or i1 %tmp4, %tmp1              ; <i1> [#uses=1]
+       br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock
+
+cond_true:             ; preds = %entry
+       %tmp10 = call i32 (...)* @bar( )                ; <i32> [#uses=0]
+       ret void
+
+UnifiedReturnBlock:            ; preds = %entry
+       ret void
+}
+
+declare i32 @bar(...)