(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,7 +621,8 @@ assemble_zeros (size)
}
else
#endif
ASM_OUTPUT_SKIP (asm_out_file, size);
if (size > 0)
ASM_OUTPUT_SKIP (asm_out_file, size);
}
/* Assemble a string constant with the specified C string as contents. */