[llvm-commits] CVS: llvm/test/Regression/Transforms/Inline/2004-10-17-InlineFunctionWithoutReturn.ll

Chris Lattner lattner at cs.uiuc.edu
Sun Oct 17 16:20:43 PDT 2004



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

2004-10-17-InlineFunctionWithoutReturn.ll added (r1.1)
---
Log message:

New testcase that crashes the inliner


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

Index: llvm/test/Regression/Transforms/Inline/2004-10-17-InlineFunctionWithoutReturn.ll
diff -c /dev/null llvm/test/Regression/Transforms/Inline/2004-10-17-InlineFunctionWithoutReturn.ll:1.1
*** /dev/null	Sun Oct 17 18:20:39 2004
--- llvm/test/Regression/Transforms/Inline/2004-10-17-InlineFunctionWithoutReturn.ll	Sun Oct 17 18:20:29 2004
***************
*** 0 ****
--- 1,10 ----
+ ; RUN: llvm-as < %s | opt -inline -disable-output
+ 
+ int %test() {
+ 	unwind
+ }
+ 
+ int %caller() {
+ 	%X = call int %test()
+ 	ret int %X
+ }






More information about the llvm-commits mailing list