summaryrefslogtreecommitdiff
path: root/test/Feature/basictest.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-06-11 15:05:02 +0000
committerChris Lattner <sabre@nondot.org>2001-06-11 15:05:02 +0000
commita6b1f53451ecd5e59c25e2f562c39fe7935507d6 (patch)
treec4685c239452c84200b386ab35841e8d3d209dea /test/Feature/basictest.ll
parentee976f33713016a96e3fbb394b7d0c5465be25d7 (diff)
downloadllvm-a6b1f53451ecd5e59c25e2f562c39fe7935507d6.tar.gz
llvm-a6b1f53451ecd5e59c25e2f562c39fe7935507d6.tar.bz2
llvm-a6b1f53451ecd5e59c25e2f562c39fe7935507d6.tar.xz
Updates to support
* Changes in PHI node structure * We now run DCE after inlining because it helps clean up LOTS of inlining gunk. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature/basictest.ll')
-rw-r--r--test/Feature/basictest.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/basictest.ll b/test/Feature/basictest.ll
index b50c4f3f67..0a2fd3e951 100644
--- a/test/Feature/basictest.ll
+++ b/test/Feature/basictest.ll
@@ -10,7 +10,7 @@ Startup: ; Basic block #0
br bool %x, label %Increment, label %Decrement
Merge: ; Basic block #3
- %i4 = phi int %i2, %i3 ; Forward ref vars...
+ %i4 = phi int [%i2, %Increment], [%i3,%Decrement] ; Forward ref vars...
%j2 = add int %j1, %i4
ret void