llvm/test/CodeGen/X86/x86-64-pic.ll
Rafael Espindola 6edb5180dd Fix shouldAssumeDSOLocal for private linkage.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270746 91177308-0d34-0410-b5e6-96231b3b80d8
2016-05-25 19:55:16 +00:00

9 lines
192 B
LLVM

; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic | FileCheck %s
@g1 = private global i8 1
define i8* @get_g1() {
; CHECK: get_g1:
; CHECK: leaq .Lg1(%rip), %rax
ret i8* @g1
}