Commit d64be5ec by Charles Hannum

*** empty log message ***

From-SVN: r665
parent c05a9b68
...@@ -161,9 +161,14 @@ print_rtx (in_rtx) ...@@ -161,9 +161,14 @@ print_rtx (in_rtx)
case 'u': case 'u':
if (XEXP (in_rtx, i) != NULL) if (XEXP (in_rtx, i) != NULL)
fprintf(outfile, " %d", INSN_UID (XEXP (in_rtx, i))); fprintf (outfile, " %d", INSN_UID (XEXP (in_rtx, i)));
else else
fprintf(outfile, " 0"); fprintf (outfile, " 0");
sawclose = 0;
break;
case '*':
fprintf (outfile, " Unknown");
sawclose = 0; sawclose = 0;
break; break;
......
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