mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
0fec737e26
For some reason, %ifdef is failing now?! Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
8 lines
82 B
NASM
8 lines
82 B
NASM
%define FOO(x) x
|
|
%ifndef FOO
|
|
%define FOO(x) _ %+ x
|
|
%endif
|
|
|
|
FOO(this):
|
|
jmp this
|