diff options
-rw-r--r-- | llvm/test/tools/gold/X86/relax-relocs.ll | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/tools/gold/X86/relax-relocs.ll b/llvm/test/tools/gold/X86/relax-relocs.ll new file mode 100644 index 00000000000..24fdf9b0868 --- /dev/null +++ b/llvm/test/tools/gold/X86/relax-relocs.ll @@ -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 +} |