[llvm-commits] CVS: llvm/test/Regression/Transforms/Inline/2004-04-20-InlineLinkOnce.llx

Chris Lattner lattner at cs.uiuc.edu
Tue Apr 20 15:15:05 PDT 2004


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

2004-04-20-InlineLinkOnce.llx added (r1.1)

---
Log message:

New testcase, distilled from PR324: http://llvm.cs.uiuc.edu/PR324 


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

Index: llvm/test/Regression/Transforms/Inline/2004-04-20-InlineLinkOnce.llx
diff -c /dev/null llvm/test/Regression/Transforms/Inline/2004-04-20-InlineLinkOnce.llx:1.1
*** /dev/null	Tue Apr 20 15:15:11 2004
--- llvm/test/Regression/Transforms/Inline/2004-04-20-InlineLinkOnce.llx	Tue Apr 20 15:15:01 2004
***************
*** 0 ****
--- 1,12 ----
+ ; RUN: llvm-as < %s | opt -inline -prune-eh -disable-output
+ 
+ implementation
+ 
+ linkonce void %caller() {
+ 	call void %callee()
+ 	ret void
+ }
+ 
+ linkonce void %callee() {
+ 	ret void
+ }





More information about the llvm-commits mailing list