From e5a352516c36707b54c41077a768ebe9ae1fd534 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sat, 7 Mar 2009 21:54:31 -0800 Subject: [PATCH] BR 2672117: handle long lines for db/dw/etc. Handle long arrays on a single line in db/dw/etc. --- nasm.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/nasm.c b/nasm.c index d0ab5927..c17e52c8 100644 --- a/nasm.c +++ b/nasm.c @@ -1495,20 +1495,20 @@ static void assemble_file(char *fname, StrList **depend_ptr) && forwref->lineno == globallineno); } else output_ins.forw_ref = false; - } - - if (optimizing > 0) { - if (passn == 1) { - for (i = 0; i < output_ins.operands; i++) { - if (output_ins.oprs[i]. - opflags & OPFLAG_FORWARD) { - struct forwrefinfo *fwinf = - (struct forwrefinfo *) - saa_wstruct(forwrefs); - fwinf->lineno = globallineno; + + if (output_ins.forw_ref) { + if (passn == 1) { + for (i = 0; i < output_ins.operands; i++) { + if (output_ins.oprs[i]. + opflags & OPFLAG_FORWARD) { + struct forwrefinfo *fwinf = + (struct forwrefinfo *) + saa_wstruct(forwrefs); + fwinf->lineno = globallineno; fwinf->operand = i; - } - } + } + } + } } }