llvm-for-llvmta/test/CodeGen/ARM/thumb-stub.ll

11 lines
174 B
LLVM
Raw Normal View History

2022-04-25 10:02:23 +02:00
; 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
}