You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s
|
|
|
|
define weak i32 @f() {
|
|
entry:
|
|
unreachable
|
|
}
|
|
|
|
define void @g() {
|
|
entry:
|
|
tail call void @h( )
|
|
ret void
|
|
}
|
|
|
|
declare extern_weak void @h()
|
|
|
|
; CHECK: {{.}}weak{{.*}}f
|
|
; CHECK: {{.}}weak{{.*}}h
|
|
|