mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
9e28fec15e
With that SystemZ knows to avoid a GOT for PIE. llvm-svn: 273614
14 lines
240 B
LLVM
14 lines
240 B
LLVM
; RUN: llc -mtriple=s390x-linux-gnu -relocation-model=pic < %s | FileCheck %s
|
|
|
|
@foo = global i32 42
|
|
|
|
define i32* @get_foo() {
|
|
ret i32* @foo
|
|
}
|
|
|
|
; CHECK: larl %r2, foo{{$}}
|
|
|
|
!llvm.module.flags = !{!0}
|
|
|
|
!0 = !{i32 1, !"PIE Level", i32 2}
|