From: Dale Johannesen Date: Wed, 23 Jun 2010 18:56:06 +0000 (+0000) Subject: Reinstate correct test, remove the real invalidated test. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9b0d0a42a6772c12bb1c8362aefa6ed50df92290;p=oota-llvm.git Reinstate correct test, remove the real invalidated test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106664 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/ARM/ifcvt6-tc.ll b/test/CodeGen/ARM/ifcvt6-tc.ll deleted file mode 100644 index 40b32ccf467..00000000000 --- a/test/CodeGen/ARM/ifcvt6-tc.ll +++ /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 ; [#uses=1] - %tmp4 = icmp eq i32 %Y, 0 ; [#uses=1] - %tmp7 = or i1 %tmp4, %tmp1 ; [#uses=1] - br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock - -cond_true: ; preds = %entry - %tmp10 = tail call i32 (...)* @bar( ) ; [#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 index 00000000000..e2c0ba398c6 --- /dev/null +++ b/test/CodeGen/ARM/ifcvt6.ll @@ -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 ; [#uses=1] + %tmp4 = icmp eq i32 %Y, 0 ; [#uses=1] + %tmp7 = or i1 %tmp4, %tmp1 ; [#uses=1] + br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock + +cond_true: ; preds = %entry + %tmp10 = call i32 (...)* @bar( ) ; [#uses=0] + ret void + +UnifiedReturnBlock: ; preds = %entry + ret void +} + +declare i32 @bar(...)