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