This reverts "Mitigate relocation overflow [part 1 of 2]." and the following commits which were trying to fix the bots. At the moment of r332082, bots are still failing and we need to find the reason of test case breakages first of all. http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-windows10pro-fast/builds/17042/steps/test/logs/stdio http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast/builds/29845/steps/test/logs/stdio llvm-svn: 332085
17 lines
495 B
Plaintext
17 lines
495 B
Plaintext
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux /dev/null -o %t1.o
|
|
# RUN: ld.lld -shared %t1.o --script %s -o %t
|
|
# RUN: llvm-objdump -section-headers -t %t | FileCheck %s
|
|
|
|
SECTIONS {
|
|
A = . + 0x1;
|
|
. += 0x1000;
|
|
}
|
|
|
|
# CHECK: Sections:
|
|
# CHECK-NEXT: Idx Name Size Address
|
|
# CHECK-NEXT: 0 00000000 0000000000000000
|
|
# CHECK-NEXT: 1 .text 00000000 0000000000001000
|
|
|
|
# CHECK: 0000000000000001 .text 00000000 A
|