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