mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
Make it an error to supply a non-constant expression to ABSOLUTE
This commit is contained in:
parent
45724a8110
commit
086c80d72b
8
nasm.c
8
nasm.c
@ -951,8 +951,12 @@ static void assemble_file (char *fname)
|
||||
"cannot use non-relocatable expression as "
|
||||
"ABSOLUTE address");
|
||||
else {
|
||||
/* abs_seg = reloc_seg(e); */
|
||||
abs_offset = reloc_value(e);
|
||||
if ( reloc_seg(e) != NO_SEG ) {
|
||||
report_error(pass0==1 ? ERR_NONFATAL : ERR_PANIC,
|
||||
"non-constant expression "
|
||||
"supplied as the address to ABSOLUTE");
|
||||
}
|
||||
abs_offset = reloc_value(e);
|
||||
}
|
||||
} else
|
||||
if (pass==1) abs_offset = 0x100;/* don't go near zero in case of / */
|
||||
|
Loading…
x
Reference in New Issue
Block a user