diff options
Diffstat (limited to 'test/ELF/i386-got-value.s')
-rw-r--r-- | test/ELF/i386-got-value.s | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/test/ELF/i386-got-value.s b/test/ELF/i386-got-value.s new file mode 100644 index 000000000000..f42555b79272 --- /dev/null +++ b/test/ELF/i386-got-value.s @@ -0,0 +1,36 @@ +# RUN: llvm-mc %s -o %t.o -filetype=obj -triple=i386-pc-linux +# RUN: ld.lld %t.o -o %t.so -shared +# RUN: llvm-readobj --relocations --symbols --sections --section-data %t.so | FileCheck %s + +# Check that the value of a preemptible symbol is written to the got +# entry when using Elf_Rel. It is not clear why that is required, but +# freebsd i386 seems to depend on it. + +# CHECK: Name: .got +# CHECK-NEXT: Type: SHT_PROGBITS +# CHECK-NEXT: Flags [ +# CHECK-NEXT: SHF_ALLOC +# CHECK-NEXT: SHF_WRITE +# CHECK-NEXT: ] +# CHECK-NEXT: Address: +# CHECK-NEXT: Offset: +# CHECK-NEXT: Size: 4 +# CHECK-NEXT: Link: +# CHECK-NEXT: Info: +# CHECK-NEXT: AddressAlignment: +# CHECK-NEXT: EntrySize: +# CHECK-NEXT: SectionData ( +# CHECK-NEXT: 0000: 00200000 +# CHECK-NEXT: ) + +# CHECK: R_386_GLOB_DAT bar 0x0 + +# CHECK: Name: bar +# CHECK-NEXT: Value: 0x2000 + + movl bar@GOT(%eax), %eax + + .data + .globl bar +bar: + .long 42 |