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.
14 lines
507 B
14 lines
507 B
7 months ago
|
# REQUIRES: x86
|
||
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %p/Inputs/eh-frame-reloc-out-of-range.s -o %t.o
|
||
|
# RUN: not ld.lld %t.o -T %s -o /dev/null 2>&1 | FileCheck %s
|
||
|
|
||
|
PHDRS { eh PT_LOAD; text PT_LOAD; }
|
||
|
SECTIONS { . = 0x10000;
|
||
|
.eh_frame_hdr : { *(.eh_frame_hdr*) } : eh
|
||
|
.eh_frame : { *(.eh_frame) } : eh
|
||
|
. = 0xF00000000;
|
||
|
.text : { *(.text*) } : text
|
||
|
}
|
||
|
|
||
|
# CHECK: error: {{.*}}:(.eh_frame+0x20): relocation R_X86_64_PC32 out of range: 64424443872 is not in [-2147483648, 2147483647]
|