xref: /llvm-project/llvm/test/CodeGen/ARM/thumb-stub.ll (revision 41410cc812a23362de9815e4c25d6287a74e0973)
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