From 41fe4d9e5816d48a70e2101fce8f3f76ec4e44cc Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Wed, 3 Feb 1993 00:16:18 +0000 Subject: [PATCH] (assemble_zeros): Output nothing rather than empty skip. From-SVN: r3417 --- gcc/varasm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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. */ -- 2.30.2