mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-27 08:10:07 +08:00
test: test case for BR 3392655, overflow during bin format link
The bin format linker should warn if a relocation overflows its virtual address. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
e91f5cc132
commit
2cd1a6fb70
37
test/binoverflow.asm
Normal file
37
test/binoverflow.asm
Normal file
@ -0,0 +1,37 @@
|
||||
;; BR 3392655: relocation overflow during bin format link
|
||||
|
||||
[map all binoverflow.map]
|
||||
|
||||
org 7C00h
|
||||
|
||||
%macro br3392655 1
|
||||
bits %1
|
||||
|
||||
section .text.%1
|
||||
start%1:
|
||||
|
||||
mov al, var%1
|
||||
%if %1 == 64
|
||||
mov sil, var%1
|
||||
%endif
|
||||
|
||||
mov al, foo%1
|
||||
%if %1 == 64
|
||||
mov sil, foo%1
|
||||
%endif
|
||||
|
||||
mov al, start%1
|
||||
%if %1 == 64
|
||||
mov sil, start%1
|
||||
%endif
|
||||
|
||||
align 16
|
||||
var%1: db 0
|
||||
|
||||
align 256
|
||||
foo%1: db 0
|
||||
%endmacro
|
||||
|
||||
br3392655 16
|
||||
br3392655 32
|
||||
br3392655 64
|
Loading…
Reference in New Issue
Block a user