xref: /llvm-project/lld/test/ELF/linkerscript/sections-max-va-overflow.s (revision ee19eb3037c781361e6f82c524b500ed5f55be18)
1# REQUIRES: x86
2# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
3
4# RUN: echo "SECTIONS { . = 0xfffffffffffffff1;" > %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 [0xfffffffffffffff1, 0xfffffffffffffff1 + 0x10] ==
9## [0xfffffffffffffff1, 0x1]. Check we can catch this overflow.
10# ERR: error: section .bar at 0xfffffffffffffff1 of size 0x10 exceeds available address space
11
12.section .bar,"ax",@progbits
13.zero 0x10
14