mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
72882bd65c
TargetMachine::shouldAssumeDSOLocal currently implies dso_local for such definitions. Adding explicit dso_local makes these tests align with the clang -fno-pic behavior and allow the removal of the TargetMachine::shouldAssumeDSOLocal special case.
20 lines
468 B
LLVM
20 lines
468 B
LLVM
; RUN: llc < %s -O0 -fast-isel-abort=1 -relocation-model=pic -mtriple=armv7-pc-linux-gnueabi | FileCheck %s
|
|
|
|
@var = dso_local global i32 42
|
|
|
|
define dso_local i32* @foo() {
|
|
; CHECK: foo:
|
|
; CHECK: ldr r0, .L[[POOL:.*]]
|
|
; CHECK-NEXT: .L[[ADDR:.*]]:
|
|
; CHECK-NEXT: add r0, pc, r0
|
|
; CHECK-NEXT: bx lr
|
|
|
|
; CHECK: .L[[POOL]]:
|
|
; CHECK-NEXT: .long var-(.L[[ADDR]]+8)
|
|
|
|
ret i32* @var
|
|
}
|
|
|
|
!llvm.module.flags = !{!0}
|
|
!0 = !{i32 1, !"PIE Level", i32 2}
|