llvm-for-llvmta/test/CodeGen/ARM/thumb-stub.ll
Nils Hölscher 3500bf8dde first commit
2022-04-25 10:02:23 +02:00

11 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
}