mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-23 19:59:57 +00:00
2f6da59b68
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@271437 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
174 B
LLVM
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
|
|
}
|