(assemble_zeros): Output nothing rather than empty skip.
authorRichard Stallman <rms@gnu.org>
Wed, 3 Feb 1993 00:16:18 +0000 (00:16 +0000)
committerRichard Stallman <rms@gnu.org>
Wed, 3 Feb 1993 00:16:18 +0000 (00:16 +0000)
From-SVN: r3417

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.  */