Commit 25109109 by Richard Sandiford Committed by Richard Sandiford

re PR debug/61188 (Many -fcompare-debug failures)

gcc/
	PR debug/61188
	* print-rtl.c (print_rtx): Suppress uids if flag_dump_unnumbered.

From-SVN: r210429
parent 7e7e4032
2014-05-14 Richard Sandiford <rdsandiford@googlemail.com>
PR debug/61188
* print-rtl.c (print_rtx): Suppress uids if flag_dump_unnumbered.
2014-05-14 Richard Sandiford <r.sandiford@uk.ibm.com>
PR target/61084
......
......@@ -188,7 +188,12 @@ print_rtx (const_rtx in_rtx)
#endif
if (INSN_CHAIN_CODE_P (GET_CODE (in_rtx)))
fprintf (outfile, " %d", INSN_UID (in_rtx));
{
if (flag_dump_unnumbered)
fprintf (outfile, " #");
else
fprintf (outfile, " %d", INSN_UID (in_rtx));
}
/* Get the format string and skip the first elements if we have handled
them already. */
......
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