(asm_output_aligned_bss): Don't emit a skip of size 0.

From-SVN: r12308
This commit is contained in:
Jason Merrill 1996-06-18 23:22:04 +00:00
parent a412357eca
commit f8bc3367cb

View File

@ -349,7 +349,7 @@ asm_output_aligned_bss (file, decl, name, size, align)
/* Standard thing is just output label for the object. */
ASM_OUTPUT_LABEL (file, name);
#endif /* ASM_DECLARE_OBJECT_NAME */
ASM_OUTPUT_SKIP (file, size);
ASM_OUTPUT_SKIP (file, size ? size : 1);
}
#endif