aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/load.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-11-01 07:15:44 +0000
committerChris Lattner <sabre@nondot.org>2006-11-01 07:15:44 +0000
commit2c884fdaa30f8ff0215536670edfffe314d9b563 (patch)
treecbf94f05959aed24958a23e6f6b352271616ab3d /test/Transforms/InstCombine/load.ll
parent76c731465048d5a888c48c7e98b7c425bd31c2b1 (diff)
remove a testcase for a marginal feature
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31345 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/load.ll')
-rw-r--r--test/Transforms/InstCombine/load.ll14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/Transforms/InstCombine/load.ll b/test/Transforms/InstCombine/load.ll
index 1934709ffa..b87e76ec5b 100644
--- a/test/Transforms/InstCombine/load.ll
+++ b/test/Transforms/InstCombine/load.ll
@@ -40,20 +40,6 @@ int %test5(bool %C) {
ret int %Z
}
-; load (phi (&V1, &V2, &V3)) --> phi(load &V1, load &V2, load &V3)
-int %test6(bool %C) {
-entry:
- br bool %C, label %cond_true.i, label %cond_continue.i
-
-cond_true.i:
- br label %cond_continue.i
-
-cond_continue.i:
- %mem_tmp.i.0 = phi int* [ %X, %cond_true.i ], [ %X2, %entry ]
- %tmp.3 = load int* %mem_tmp.i.0
- ret int %tmp.3
-}
-
int %test7(int %X) {
%V = getelementptr int* null, int %X
%R = load int* %V