OSDN Git Service

(assemble_zeros): Output nothing rather than empty skip.
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 3 Feb 1993 00:16:18 +0000 (00:16 +0000)
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 3 Feb 1993 00:16:18 +0000 (00:16 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@3417 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/varasm.c

index 4ee5944..c40a2fa 100644 (file)
@@ -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.  */