mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
c82586e4b5
llvm-svn: 271437
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
|
|
}
|