forked from OSchip/llvm-project
new testcase, the inliner shouldn't inline this.
llvm-svn: 37722
This commit is contained in:
parent
43ca4b48f1
commit
b2a9048dc4
|
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue