15 lines
252 B
LLVM
15 lines
252 B
LLVM
|
; RUN: opt < %s -inline -S | 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
|
||
|
}
|
||
|
|