diff options
author | Chris Lattner <sabre@nondot.org> | 2009-11-11 05:25:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-11-11 05:25:16 +0000 |
commit | f1e9cf5020df4bf93c4f559842da824d69b64d22 (patch) | |
tree | ecc1f5c1e0bc70621c333059f1fe1596adb48406 /test/Transforms/CondProp/phisimplify.ll | |
parent | a8333d3d107df1e0b6bde986ed0532915e154b65 (diff) |
remove condprop testcases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86804 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/CondProp/phisimplify.ll')
-rw-r--r-- | test/Transforms/CondProp/phisimplify.ll | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/test/Transforms/CondProp/phisimplify.ll b/test/Transforms/CondProp/phisimplify.ll deleted file mode 100644 index ce33f1e59a..0000000000 --- a/test/Transforms/CondProp/phisimplify.ll +++ /dev/null @@ -1,43 +0,0 @@ -; RUN: opt < %s -condprop -S | not grep phi - -define i32 @test(i32 %C, i1 %Val) { - switch i32 %C, label %T1 [ - i32 4, label %T2 - i32 17, label %T3 - ] - -T1: ; preds = %0 - call void @a( ) - br label %Cont - -T2: ; preds = %0 - call void @b( ) - br label %Cont - -T3: ; preds = %0 - call void @c( ) - br label %Cont - -Cont: ; preds = %T3, %T2, %T1 - ;; PHI becomes dead after threading T2 - %C2 = phi i1 [ %Val, %T1 ], [ true, %T2 ], [ %Val, %T3 ] ; <i1> [#uses=1] - br i1 %C2, label %L2, label %F2 - -L2: ; preds = %Cont - call void @d( ) - ret i32 17 - -F2: ; preds = %Cont - call void @e( ) - ret i32 1 -} - -declare void @a() - -declare void @b() - -declare void @c() - -declare void @d() - -declare void @e() |