[llvm-commits] [llvm] r106664 - in /llvm/trunk/test/CodeGen/ARM: ifcvt6-tc.ll ifcvt6.ll
Dale Johannesen
dalej at apple.com
Wed Jun 23 11:56:06 PDT 2010
Author: johannes
Date: Wed Jun 23 13:56:06 2010
New Revision: 106664
URL: http://llvm.org/viewvc/llvm-project?rev=106664&view=rev
Log:
Reinstate correct test, remove the real invalidated test.
Added:
llvm/trunk/test/CodeGen/ARM/ifcvt6.ll
Removed:
llvm/trunk/test/CodeGen/ARM/ifcvt6-tc.ll
Removed: llvm/trunk/test/CodeGen/ARM/ifcvt6-tc.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/ifcvt6-tc.ll?rev=106663&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/ifcvt6-tc.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/ifcvt6-tc.ll (removed)
@@ -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(...)
Added: llvm/trunk/test/CodeGen/ARM/ifcvt6.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/ifcvt6.ll?rev=106664&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/ifcvt6.ll (added)
+++ llvm/trunk/test/CodeGen/ARM/ifcvt6.ll Wed Jun 23 13:56:06 2010
@@ -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(...)
More information about the llvm-commits
mailing list