From 4cc70cf4bf83b86d49ab2d5f035cd320f1a1762d Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Thu, 18 Feb 1993 17:20:58 -0800 Subject: [PATCH] (end_final): Don't call assemble_zeros with an size argument of zero. From-SVN: r3489 --- gcc/final.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/final.c b/gcc/final.c index 344805f19d4..1c1080f46ed 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -307,7 +307,8 @@ end_final (filename) /* Make space for the table of counts. */ ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 2); - assemble_zeros (INT_TYPE_SIZE / BITS_PER_UNIT * count_basic_blocks); + if (count_basic_blocks != 0) + assemble_zeros (INT_TYPE_SIZE / BITS_PER_UNIT * count_basic_blocks); /* Output the table of addresses. */ readonly_data_section (); -- 2.30.2