llvm-6502/test/CodeGen/Alpha/weak.ll

18 lines
310 B
LLVM
Raw Normal View History

; 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()