Commit 1c13f168 by Xinliang David Li Committed by Xinliang David Li

use ASM_COMMENT_START instead of #

From-SVN: r172682
parent e5dda971
2011-04-18 Xinliang David Li <davidxl@google.com>
* final.c (dump_basic_block_info): Use ASM_COMMENT_START.
2011-04-18 Jakub Jelinek <jakub@redhat.com>
PR middle-end/48661
......
......@@ -1691,14 +1691,14 @@ dump_basic_block_info (FILE *file, rtx insn, basic_block *start_to_bb,
edge e;
edge_iterator ei;
fprintf (file, "# BLOCK %d", bb->index);
fprintf (file, "%s BLOCK %d", ASM_COMMENT_START, bb->index);
if (bb->frequency)
fprintf (file, " freq:%d", bb->frequency);
if (bb->count)
fprintf (file, " count:" HOST_WIDEST_INT_PRINT_DEC,
bb->count);
fprintf (file, " seq:%d", (*bb_seqn)++);
fprintf (file, "\n# PRED:");
fprintf (file, "\n%s PRED:", ASM_COMMENT_START);
FOR_EACH_EDGE (e, ei, bb->preds)
{
dump_edge_info (file, e, 0);
......@@ -1711,7 +1711,7 @@ dump_basic_block_info (FILE *file, rtx insn, basic_block *start_to_bb,
edge e;
edge_iterator ei;
fprintf (asm_out_file, "# SUCC:");
fprintf (asm_out_file, "%s SUCC:", ASM_COMMENT_START);
FOR_EACH_EDGE (e, ei, bb->succs)
{
dump_edge_info (asm_out_file, e, 1);
......
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