Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / PowerPC / pie.ll
blob8cb8a12edff7b2b3e90e41ef162f1a5fec36da4d
1 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-pc-linux -relocation-model=pic | FileCheck %s
4 define dso_local void @f() {
5   ret void
8 define dso_local void @g() {
9 ; CHECK: g:
10 ; CHECK: bl f{{$}}
11   call void @f()
12   ret void
15 !llvm.module.flags = !{!0}
16 !0 = !{i32 1, !"PIE Level", i32 1}