[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git] / test / CodeGen / PowerPC / pie.ll
blobe037b7686c145a7b9cf77c41a85f59379be3fe77
1 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-pc-linux -relocation-model=pic | FileCheck %s
4 define void @f() {
5   ret void
8 define 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}