aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1993-02-18 17:20:58 -0800
committerJim Wilson <wilson@gcc.gnu.org>1993-02-18 17:20:58 -0800
commit4cc70cf4bf83b86d49ab2d5f035cd320f1a1762d (patch)
tree7c3942a55127be6b80f97dd132ca3087a83f87b9 /gcc
parente133665800750b8721862799359ee4feb1889e4c (diff)
downloadgcc-4cc70cf4bf83b86d49ab2d5f035cd320f1a1762d.zip
gcc-4cc70cf4bf83b86d49ab2d5f035cd320f1a1762d.tar.gz
gcc-4cc70cf4bf83b86d49ab2d5f035cd320f1a1762d.tar.bz2
(end_final): Don't call assemble_zeros with an size argument of zero.
From-SVN: r3489
Diffstat (limited to 'gcc')
-rw-r--r--gcc/final.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c
index 344805f..1c1080f 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 ();