Commit 4cc70cf4 by Jim Wilson

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

From-SVN: r3489
parent e1336658
......@@ -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 ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment