summaryrefslogtreecommitdiffstats
path: root/test/Transforms/SCCP/2003-08-26-InvokeHandling.ll
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2008-03-19 04:14:49 +0000
committerTanya Lattner <tonic@nondot.org>2008-03-19 04:14:49 +0000
commitf396cc87302d9a69b3680c339d219c49262f5bf3 (patch)
tree78cde53c3df36e7bb12a1740daafd43c225058cb /test/Transforms/SCCP/2003-08-26-InvokeHandling.ll
parent34000979662d9ae9b22e4d05272b77d944871d1c (diff)
downloadexternal_llvm-f396cc87302d9a69b3680c339d219c49262f5bf3.zip
external_llvm-f396cc87302d9a69b3680c339d219c49262f5bf3.tar.gz
external_llvm-f396cc87302d9a69b3680c339d219c49262f5bf3.tar.bz2
Upgrade tests to not use llvm-upgrade.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48529 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/SCCP/2003-08-26-InvokeHandling.ll')
-rw-r--r--test/Transforms/SCCP/2003-08-26-InvokeHandling.ll23
1 files changed, 13 insertions, 10 deletions
diff --git a/test/Transforms/SCCP/2003-08-26-InvokeHandling.ll b/test/Transforms/SCCP/2003-08-26-InvokeHandling.ll
index 36bfba4..020af7d 100644
--- a/test/Transforms/SCCP/2003-08-26-InvokeHandling.ll
+++ b/test/Transforms/SCCP/2003-08-26-InvokeHandling.ll
@@ -1,15 +1,18 @@
; The PHI cannot be eliminated from this testcase, SCCP is mishandling invoke's!
-; RUN: llvm-upgrade < %s | llvm-as | opt -sccp | llvm-dis | grep phi
+; RUN: llvm-as < %s | opt -sccp | llvm-dis | grep phi
-declare void %foo()
-int %test(bool %cond) {
+declare void @foo()
+
+define i32 @test(i1 %cond) {
Entry:
- br bool %cond, label %Inv, label %Cont
-Inv:
- invoke void %foo() to label %Ok except label %Cont
-Ok:
+ br i1 %cond, label %Inv, label %Cont
+Inv: ; preds = %Entry
+ invoke void @foo( )
+ to label %Ok unwind label %Cont
+Ok: ; preds = %Inv
br label %Cont
-Cont:
- %X = phi int [0, %Entry], [1,%Ok], [0, %Inv]
- ret int %X
+Cont: ; preds = %Ok, %Inv, %Entry
+ %X = phi i32 [ 0, %Entry ], [ 1, %Ok ], [ 0, %Inv ] ; <i32> [#uses=1]
+ ret i32 %X
}
+