You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
444 B
13 lines
444 B
7 months ago
|
# REQUIRES: x86
|
||
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
|
||
|
# RUN: echo "SECTIONS { .text 0x2000 : {. = 0x10 ; *(.text) } }" > %t.script
|
||
|
# RUN: not ld.lld %t --script %t.script -o /dev/null
|
||
|
|
||
|
## This inputs previously created a 4gb temporarily file under 32 bit
|
||
|
## configuration. Issue was fixed. There is no clean way to check that from here.
|
||
|
## This testcase added for documentation purposes.
|
||
|
|
||
|
.globl _start
|
||
|
_start:
|
||
|
nop
|