diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-02-19 01:20:58 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-02-19 01:20:58 +0000 |
commit | 87f1ab2449a33818a45bd6598660236f41649574 (patch) | |
tree | 7c3942a55127be6b80f97dd132ca3087a83f87b9 /gcc/final.c | |
parent | 116ab4826ffb54f3cbe25f49a7978cb110884bc5 (diff) | |
download | gcc-87f1ab2449a33818a45bd6598660236f41649574.tar.gz |
(end_final): Don't call assemble_zeros with an size argument of zero.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@3489 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 (); |