0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-07-24 10:25:42 -04:00
nasm/travis/test/weirdpaste.asm
Cyrill Gorcunov f1cf95480d travis: weirdpaste -- add nil dereference test
To address BR 3392696

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
2020-07-12 06:01:51 -07:00

37 lines
410 B
NASM

%define foo xyzzy
%define bar 1e+10
%define xyzzy1e 15
%macro dx 2
%assign xx %1%2
dw xx
%endmacro
dx foo, bar
%macro df 2
%assign xy __float32__(%1e+%2)
dd xy
dd %1e+%2
%endmacro
df 1, 36
df 33, 20
df 0, 2
df 1.2, 5
%define N 1e%++%+ 5
dd N, 1e+5
;
; test nil dereference, since we're
; modifying with %line keep it last
; in the file
;
; BR 3392696
;
%line 1 "`weirdpaste.asm"
mov eax, eax