OSDN Git Service

(asm_output_aligned_bss): Don't emit a skip of size 0.
authormerrill <merrill@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 18 Jun 1996 23:22:04 +0000 (23:22 +0000)
committermerrill <merrill@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 18 Jun 1996 23:22:04 +0000 (23:22 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12308 138bc75d-0d04-0410-961f-82ee72b054a4

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