xref: /aosp_15_r20/external/llvm/test/CodeGen/ARM/thumb-stub.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: llc  -relocation-model=pic -mtriple=thumb-apple-darwin < %s | FileCheck %s
2
3declare hidden void @f()
4
5; CHECK: bl _f
6
7define void @g() {
8  call void @f()
9  ret void
10}
11