blob: 3cf758ca8c8e95d6de65c25ed6172b6f4ee9e233 [file] [log] [blame]
; 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
}