From: Richard Stallman Date: Wed, 3 Feb 1993 00:16:18 +0000 (+0000) Subject: (assemble_zeros): Output nothing rather than empty skip. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=41fe4d9e5816d48a70e2101fce8f3f76ec4e44cc;p=gcc.git (assemble_zeros): Output nothing rather than empty skip. From-SVN: r3417 --- diff --git a/gcc/varasm.c b/gcc/varasm.c index 4ee5944014f..c40a2faf1df 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -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. */