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

Chris Lattner lattner at cs.uiuc.edu
Sat Nov 2 13:46:00 PST 2002


Changes in directory llvm/test/Regression/Jello:

test4.ll updated: 1.1 -> 1.2

---
Log message:

Make phi test a bit more challenging


---
Diffs of the changes:

Index: llvm/test/Regression/Jello/test4.ll
diff -u llvm/test/Regression/Jello/test4.ll:1.1 llvm/test/Regression/Jello/test4.ll:1.2
--- llvm/test/Regression/Jello/test4.ll:1.1	Fri Oct 25 18:01:51 2002
+++ llvm/test/Regression/Jello/test4.ll	Sat Nov  2 13:45:30 2002
@@ -1,7 +1,10 @@
 ; test phi node
-int %main() {
+void %main() {
 	br label %Test
 Test:
-	%X = phi int [7, %0]
-	ret int %X
+	%X = phi int [7, %0], [%Y, %Dead]
+	ret void
+Dead:
+	%Y = shr int 12, ubyte 4
+	br label %Test
 }





More information about the llvm-commits mailing list