bolt/deps/llvm-18.1.8/llvm/test/CodeGen/ARM/thumb-stub.ll
2025-02-14 19:21:04 +01:00

10 lines
174 B
LLVM

; RUN: llc -relocation-model=pic -mtriple=thumb-apple-darwin < %s | FileCheck %s
declare hidden void @f()
; CHECK: bl _f
define void @g() {
call void @f()
ret void
}