nasm.c: another readability cleanup

Yet another change for readability
This commit is contained in:
H. Peter Anvin 2009-02-26 14:36:19 -08:00
parent 7219198d72
commit 3213a57740

5
nasm.c
View File

@ -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,