mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
nasm.c: another readability cleanup
Yet another change for readability
This commit is contained in:
parent
7219198d72
commit
3213a57740
5
nasm.c
5
nasm.c
@ -1530,9 +1530,8 @@ static void assemble_file(char *fname, StrList **depend_ptr)
|
||||
if (output_ins.operands == 1 &&
|
||||
(output_ins.oprs[0].type & IMMEDIATE) &&
|
||||
output_ins.oprs[0].wrt == NO_SEG) {
|
||||
int isext =
|
||||
output_ins.oprs[0].
|
||||
opflags & OPFLAG_EXTERN;
|
||||
bool isext = !!(output_ins.oprs[0].opflags
|
||||
& OPFLAG_EXTERN);
|
||||
def_label(output_ins.label,
|
||||
output_ins.oprs[0].segment,
|
||||
output_ins.oprs[0].offset, NULL,
|
||||
|
Loading…
Reference in New Issue
Block a user