(assemble_zeros): Output nothing rather than empty skip.

From-SVN: r3417
This commit is contained in:
Richard Stallman 1993-02-03 00:16:18 +00:00
parent a4d8855c2a
commit 41fe4d9e58
1 changed files with 2 additions and 1 deletions

View File

@ -621,6 +621,7 @@ assemble_zeros (size)
} }
else else
#endif #endif
if (size > 0)
ASM_OUTPUT_SKIP (asm_out_file, size); ASM_OUTPUT_SKIP (asm_out_file, size);
} }