new testcase, the inliner shouldn't inline this.

llvm-svn: 37722
This commit is contained in:
Chris Lattner 2007-06-25 21:49:53 +00:00
parent 43ca4b48f1
commit b2a9048dc4
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
; RUN: llvm-as < %s | opt -inline | llvm-dis | grep call
; 'bar' can be overridden at link-time, don't inline it.
define void @foo() {
entry:
tail call void @bar( ) ; <i32> [#uses=0]
ret void
}
define weak void @bar() {
ret void
}