1# REQUIRES: x86 2# RUN: llvm-mc -filetype=obj -triple=i386-pc-linux %s -o %t.o 3 4# RUN: echo "SECTIONS { . = 0xfffffff1;" > %t.script 5# RUN: echo " .bar : { *(.bar*) } }" >> %t.script 6# RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s -check-prefix=ERR 7 8## .bar section has data in [0xfffffff1, 0xfffffff1 + 0x10] == [0xfffffff1, 0x1]. 9## Check we can catch this overflow. 10# ERR: error: section .bar at 0xfffffff1 of size 0x10 exceeds available address space 11 12## [0xfffffff1, 0x100000000) is allowed. 13# RUN: echo "SECTIONS { . = 0xfffffff0;" > %t.script 14# RUN: echo " .bar : { *(.bar*) } }" >> %t.script 15# RUN: ld.lld -o /dev/null -T %t.script %t.o 16 17.section .bar,"ax",@progbits 18.zero 0x10 19