aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/extern_weak.ll
blob: c2ff09f21e8022f5dabedef71fe405f8eb0496ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llc < %s -mtriple=i686-apple-darwin | grep weak_reference | count 2

@Y = global i32 (i8*)* @X               ; <i32 (i8*)**> [#uses=0]

declare extern_weak i32 @X(i8*)

define void @bar() {
        tail call void (...) @foo( )
        ret void
}

declare extern_weak void @foo(...)