view lld/test/ELF/got32-i386-pie-rw.s @ 192:d7606dcf6fce

Added tag llvm10 for changeset 0572611fdcc8
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 14 Dec 2020 18:01:34 +0900
parents 1d019706d866
children 5f17cb93ff66
line wrap: on
line source

# 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        00002180
# CHECK: .got              PROGBITS        [[GOT:[0-9a-z]*]]
# CHECK-DAG: 00002182  00000008 R_386_RELATIVE
# CHECK-DAG: [[GOT]]   00000008 R_386_RELATIVE
foo:

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