Add a test for r273022.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273073 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2016-06-18 00:24:49 +00:00
parent af8f40da2b
commit e56626f946

View File

@ -0,0 +1,14 @@
; RUN: llvm-as %s -o %t.o
; RUN: %gold -plugin %llvmshlibdir/LLVMgold.so \
; RUN: --plugin-opt=save-temps \
; RUN: -shared %t.o -o %t.so
; RUN: llvm-readobj -r %t.so.o | FileCheck %s
; Test that we produce R_X86_64_GOTPCREL instead of R_X86_64_GOTPCRELX
; CHECK: R_X86_64_GOTPCREL foo
@foo = external global i32
define i32 @bar() {
%t = load i32, i32* @foo
ret i32 %t
}