mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2026-01-31 01:35:20 +01:00
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
|
|
}
|