You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
252 B

; 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
}