brintos

brintos / llvm-project-archived public Read only

0
0
Text · 299 B · 8cb8a12 Raw
17 lines · plain
1; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-pc-linux -relocation-model=pic | FileCheck %s2 3 4define dso_local void @f() {5  ret void6}7 8define dso_local void @g() {9; CHECK: g:10; CHECK: bl f{{$}}11  call void @f()12  ret void13}14 15!llvm.module.flags = !{!0}16!0 = !{i32 1, !"PIE Level", i32 1}17