[llvm-commits] CVS: llvm/test/Regression/Transforms/Inline/2003-09-22-PHINodeInlineFail.ll

Chris Lattner lattner at cs.uiuc.edu
Wed Oct 8 13:27:01 PDT 2003


Changes in directory llvm/test/Regression/Transforms/Inline:

2003-09-22-PHINodeInlineFail.ll added (r1.1)

---
Log message:

Checkin an old bug, which appears to be fixed


---
Diffs of the changes:  (+17 -0)

Index: llvm/test/Regression/Transforms/Inline/2003-09-22-PHINodeInlineFail.ll
diff -c /dev/null llvm/test/Regression/Transforms/Inline/2003-09-22-PHINodeInlineFail.ll:1.1
*** /dev/null	Wed Oct  8 13:26:20 2003
--- llvm/test/Regression/Transforms/Inline/2003-09-22-PHINodeInlineFail.ll	Wed Oct  8 13:26:10 2003
***************
*** 0 ****
--- 1,17 ----
+ ; RUN: llvm-as < %s | opt -inline -disable-output
+ implementation
+ 
+ int %main() {
+ entry:
+ 	invoke void %__main( )
+ 			to label %LongJmpBlkPre except label %LongJmpBlkPre
+ 
+ LongJmpBlkPre:
+ 	%i.3 = phi uint [ 0, %entry ], [ 0, %entry]
+ 	ret int 0
+ }
+ 
+ void %__main() {
+ 	ret void
+ }
+ 





More information about the llvm-commits mailing list