aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/ARM/thumb-stub.ll
blob: 68001b6c0eecf64a9b708bc144a39cd471c817d6 (plain)
1
2
3
4
5
6
7
8
9
10
; 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
}