diff options
Diffstat (limited to 'test/ELF/relocation-relative-absolute.s')
| -rw-r--r-- | test/ELF/relocation-relative-absolute.s | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/ELF/relocation-relative-absolute.s b/test/ELF/relocation-relative-absolute.s new file mode 100644 index 0000000000000..5253191331cc1 --- /dev/null +++ b/test/ELF/relocation-relative-absolute.s @@ -0,0 +1,12 @@ +# REQUIRES: x86 +# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o +# RUN: not ld.lld %t.o -o %t -pie 2>&1 | FileCheck %s + +.globl _start +_start: + +# CHECK: relocation R_X86_64_PLT32 cannot refer to absolute symbol answer +call answer@PLT + +.globl answer +answer = 42 |
