aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-06-24 04:06:23 +0000
committerChris Lattner <sabre@nondot.org>2001-06-24 04:06:23 +0000
commit4ea55136c1f412b116cd02730ce0e5583f55b325 (patch)
treeb22b538d0d24eaea0c12fbca02f623ac166bfca3
parentc9f39b26c0254f185ee69567bf07c8cea5fb801c (diff)
Add a useless phi for testing with InductionVariables stuff
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/intervals.ll1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/intervals.ll b/test/intervals.ll
index e355ff8e2a..d5e2486c98 100644
--- a/test/intervals.ll
+++ b/test/intervals.ll
@@ -14,6 +14,7 @@ L1Header:
%i1 = add int 0, 0 ; %i1 = 0
br label %L2Body
L2Body:
+ %wl = phi int [%j, %L1Header], [%wl, %L2Body] ;; Useless PHI
%i2 = phi int [%i1, %L1Header], [%i3, %L2Body]
%i3 = add int %i2, 1
%L2Done = seteq int %i3, 10