19 lines · plain
1# REQUIRES: x862# RUN: llvm-mc -filetype=obj -triple=i386-pc-linux %s -o %t.o3 4# RUN: echo "SECTIONS { . = 0xfffffff1;" > %t.script5# RUN: echo " .bar : { *(.bar*) } }" >> %t.script6# RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s -check-prefix=ERR7 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 space11 12## [0xfffffff1, 0x100000000) is allowed.13# RUN: echo "SECTIONS { . = 0xfffffff0;" > %t.script14# RUN: echo " .bar : { *(.bar*) } }" >> %t.script15# RUN: ld.lld -o /dev/null -T %t.script %t.o16 17.section .bar,"ax",@progbits18.zero 0x1019