(end_final): Don't call assemble_zeros with an size argument of zero.

From-SVN: r3489
This commit is contained in:
Jim Wilson 1993-02-18 17:20:58 -08:00
parent e133665800
commit 4cc70cf4bf
1 changed files with 2 additions and 1 deletions

View File

@ -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 ();