aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Alpha/weak.ll
blob: aefaefd110a473f28725b8429dfd91a340ddc8d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep .weak.*f
; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep .weak.*h

implementation   ; Functions:

weak uint %f() {
entry:
	unreachable
}

void %g() {
entry:
        tail call void %h( )
        ret void
}

declare extern_weak void %h()