[llvm-commits] CVS: llvm/test/Regression/Jello/2003-06-05-PHIBug.ll
Chris Lattner
lattner at cs.uiuc.edu
Thu Jun 5 11:59:02 PDT 2003
Changes in directory llvm/test/Regression/Jello:
2003-06-05-PHIBug.ll added (r1.1)
---
Log message:
New testcase, the JIT currently handles this right, I just don't want to
reintroduce a bug that didn't have a testcase.
---
Diffs of the changes:
Index: llvm/test/Regression/Jello/2003-06-05-PHIBug.ll
diff -c /dev/null llvm/test/Regression/Jello/2003-06-05-PHIBug.ll:1.1
*** /dev/null Thu Jun 5 11:58:05 2003
--- llvm/test/Regression/Jello/2003-06-05-PHIBug.ll Thu Jun 5 11:57:55 2003
***************
*** 0 ****
--- 1,16 ----
+ ; Testcase distilled from 256.bzip2.
+
+ target endian = little
+ target pointersize = 32
+
+ int %main() {
+ entry:
+ %X = add int 1, -1
+ br label %Next
+
+ Next:
+ %A = phi int [ %X, %entry ]
+ %B = phi int [ %X, %entry ]
+ %C = phi int [ %X, %entry ]
+ ret int %C
+ }
More information about the llvm-commits
mailing list