(asm_output_aligned_bss): Don't emit a skip of size 0.
authorJason Merrill <merrill@gnu.org>
Tue, 18 Jun 1996 23:22:04 +0000 (23:22 +0000)
committerJason Merrill <merrill@gnu.org>
Tue, 18 Jun 1996 23:22:04 +0000 (23:22 +0000)
From-SVN: r12308

gcc/varasm.c

index 08399f2..b5a44f3 100644 (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