mirror of
https://github.com/opnsense/src.git
synced 2026-06-03 13:58:30 -04:00
16 lines
279 B
LLVM
16 lines
279 B
LLVM
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-pc-linux -relocation-model=pic | FileCheck %s
|
|
|
|
|
|
define void @f() {
|
|
ret void
|
|
}
|
|
|
|
define void @g() {
|
|
; CHECK: g:
|
|
; CHECK: bl f{{$}}
|
|
call void @f()
|
|
ret void
|
|
}
|
|
|
|
!llvm.module.flags = !{!0}
|
|
!0 = !{i32 1, !"PIE Level", i32 1}
|