brintos

brintos / llvm-project-archived public Read only

0
0
Text · 265 B · 375ce22 Raw
19 lines · plain
1; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s2 3define weak i32 @f() {4entry:5        unreachable6}7 8define void @g() {9entry:10        tail call void @h( )11        ret void12}13 14declare extern_weak void @h()15 16; CHECK: {{.}}weak{{.*}}f17; CHECK: {{.}}weak{{.*}}h18 19