Home | History | Annotate | Download | only in ARM
      1 ; RUN: llc  -relocation-model=pic -mtriple=thumb-apple-darwin < %s | FileCheck %s
      2 
      3 declare hidden void @f()
      4 
      5 ; CHECK: bl _f
      6 
      7 define void @g() {
      8   call void @f()
      9   ret void
     10 }
     11