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.
19 lines
265 B
19 lines
265 B
4 months ago
|
; 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
|
||
|
|