aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/Inline/2007-06-25-WeakInline.ll
blob: 941326efb4e83298fa7e2b82ed4f35657671a0b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; 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
}