2017-10-24 05:00:15 +08:00
|
|
|
# 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: 00001002 00000008 R_386_RELATIVE
|
2018-01-09 08:13:54 +08:00
|
|
|
# CHECK: [[GOT]] 00000008 R_386_RELATIVE
|
2017-10-24 05:00:15 +08:00
|
|
|
foo:
|
|
|
|
|
|
|
|
.section .foobar, "awx"
|
|
|
|
.global _start
|
|
|
|
_start:
|
|
|
|
movl foo@GOT, %ebx
|