* print-rtl.c (print_rtx): Fix JUMP_LABEL index.
From-SVN: r151619
This commit is contained in:
parent
ad42ff1e07
commit
68bcdeed11
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
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)
|
||||
|
|
Loading…
Add table
Reference in a new issue