[llvm-commits] CVS: llvm/test/Regression/Jello/2003-05-11-PHIRegAllocBug.ll
Chris Lattner
lattner at cs.uiuc.edu
Sun May 11 21:32:01 PDT 2003
Changes in directory llvm/test/Regression/Jello:
2003-05-11-PHIRegAllocBug.ll updated: 1.1 -> 1.2
---
Log message:
Simplify testcase a bit more
---
Diffs of the changes:
Index: llvm/test/Regression/Jello/2003-05-11-PHIRegAllocBug.ll
diff -u llvm/test/Regression/Jello/2003-05-11-PHIRegAllocBug.ll:1.1 llvm/test/Regression/Jello/2003-05-11-PHIRegAllocBug.ll:1.2
--- llvm/test/Regression/Jello/2003-05-11-PHIRegAllocBug.ll:1.1 Sun May 11 21:27:05 2003
+++ llvm/test/Regression/Jello/2003-05-11-PHIRegAllocBug.ll Sun May 11 21:31:48 2003
@@ -3,13 +3,13 @@
implementation
-int %main(int, sbyte**) {
+int %main() {
entry:
- br bool false, label %then, label %endif
+ br label %endif
then:
br label %endif
endif:
- %x.0 = phi uint [ 4, %entry ], [ 27, %then ]
- %result.0 = phi int [ 32, %then ], [ 0, %entry ]
+ %x = phi uint [ 4, %entry ], [ 27, %then ]
+ %result = phi int [ 32, %then ], [ 0, %entry ]
ret int 0
}
More information about the llvm-commits
mailing list