bolt/deps/llvm-18.1.8/llvm/test/CodeGen/PowerPC/pie.ll
2025-02-14 19:21:04 +01:00

16 lines
299 B
LLVM

; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-pc-linux -relocation-model=pic | FileCheck %s
define dso_local void @f() {
ret void
}
define dso_local void @g() {
; CHECK: g:
; CHECK: bl f{{$}}
call void @f()
ret void
}
!llvm.module.flags = !{!0}
!0 = !{i32 1, !"PIE Level", i32 1}