]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/ELF/linkerscript/i386-sections-max-va-overflow.s
Vendor import of lld trunk r338150:
[FreeBSD/FreeBSD.git] / test / ELF / linkerscript / i386-sections-max-va-overflow.s
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] == [0xffffff1, 0x1]. 
9 ## Check we can catch this overflow.
10 # ERR: error: section .bar at 0xFFFFFFF1 of size 0x10 exceeds available address space
11
12 .section .bar,"ax",@progbits
13 .zero 0x10