YouCompleteMe/cpp/llvm/test/Transforms/Inline/2007-06-25-WeakInline.ll
2012-07-05 17:51:06 -07:00

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
}