Mercurial > hg > CbC > CbC_llvm
view lld/test/ELF/got32-i386-pie-rw.s @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
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