Commit 68bcdeed by Richard Henderson Committed by Richard Henderson

* print-rtl.c (print_rtx): Fix JUMP_LABEL index.

From-SVN: r151619
parent ad42ff1e
2009-09-10 Richard Henderson <rth@redhat.com>
* print-rtl.c (print_rtx): Fix JUMP_LABEL index.
2009-09-10 Jason Merrill <jason@redhat.com>
* tree.c (chain_index): New fn.
......
......@@ -305,7 +305,7 @@ print_rtx (const_rtx in_rtx)
break;
}
}
else if (i == 9 && JUMP_P (in_rtx) && XEXP (in_rtx, i) != NULL)
else if (i == 8 && JUMP_P (in_rtx) && XEXP (in_rtx, i) != NULL)
/* Output the JUMP_LABEL reference. */
fprintf (outfile, "\n -> %d", INSN_UID (XEXP (in_rtx, i)));
else if (i == 0 && GET_CODE (in_rtx) == VALUE)
......
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