Commit f8bc3367 by Jason Merrill

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

From-SVN: r12308
parent a412357e
...@@ -349,7 +349,7 @@ asm_output_aligned_bss (file, decl, name, size, align) ...@@ -349,7 +349,7 @@ asm_output_aligned_bss (file, decl, name, size, align)
/* Standard thing is just output label for the object. */ /* Standard thing is just output label for the object. */
ASM_OUTPUT_LABEL (file, name); ASM_OUTPUT_LABEL (file, name);
#endif /* ASM_DECLARE_OBJECT_NAME */ #endif /* ASM_DECLARE_OBJECT_NAME */
ASM_OUTPUT_SKIP (file, size); ASM_OUTPUT_SKIP (file, size ? size : 1);
} }
#endif #endif
......
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