mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-28 23:43:25 +00:00
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:
parent
af8f40da2b
commit
e56626f946
14
test/tools/gold/X86/relax-relocs.ll
Normal file
14
test/tools/gold/X86/relax-relocs.ll
Normal 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user