aboutsummaryrefslogtreecommitdiff
path: root/test/ELF/got32-i386-pie-rw.s
blob: 180ba864fbfd86e24931cd645f7b56e34fc9df3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=i686-pc-linux %s -o %t.o
# RUN: ld.lld %t.o -o %t -pie
# RUN: llvm-readelf -r -S %t | FileCheck %s

# Unlike bfd and gold we accept this.

# CHECK: .foobar           PROGBITS        00001000
# CHECK: .got              PROGBITS        [[GOT:[0-9a-z]*]]
# CHECK-DAG: 00001002  00000008 R_386_RELATIVE
# CHECK-DAG: [[GOT]]   00000008 R_386_RELATIVE
foo:

.section .foobar, "awx"
.global _start
_start:
 movl foo@GOT, %ebx