[llvm-commits] CVS: llvm/test/Regression/Jello/test-phi.ll

Chris Lattner lattner at cs.uiuc.edu
Fri Dec 13 04:14:01 PST 2002


Changes in directory llvm/test/Regression/Jello:

test-phi.ll updated: 1.1 -> 1.2

---
Log message:

Test more phi stuff


---
Diffs of the changes:

Index: llvm/test/Regression/Jello/test-phi.ll
diff -u llvm/test/Regression/Jello/test-phi.ll:1.1 llvm/test/Regression/Jello/test-phi.ll:1.2
--- llvm/test/Regression/Jello/test-phi.ll:1.1	Thu Nov 21 11:20:12 2002
+++ llvm/test/Regression/Jello/test-phi.ll	Fri Dec 13 04:12:50 2002
@@ -1,4 +1,16 @@
 ; test phi node
+
+%Y = global int 6
+
+void %blah(int *%X) {
+	br label %T
+T:
+	phi int* [%X, %0], [%Y, %Dead]
+	ret void
+Dead:
+	br label %T
+}
+
 void %main() {
 	br label %Test
 Test:





More information about the llvm-commits mailing list