Commit 41fe4d9e by Richard Stallman

(assemble_zeros): Output nothing rather than empty skip.

From-SVN: r3417
parent a4d8855c
......@@ -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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment