Commit 137a05d3 by Jakub Jelinek Committed by Jakub Jelinek

print-rtl.c (print_rtx): Use JUMP_LABEL (in_rtx) instead of XEXP (in_rtx, 8).

	* print-rtl.c (print_rtx): Use JUMP_LABEL (in_rtx) instead of
	XEXP (in_rtx, 8).

From-SVN: r151643
parent 6aa8519d
2009-09-11 Jakub Jelinek <jakub@redhat.com>
* print-rtl.c (print_rtx): Use JUMP_LABEL (in_rtx) instead of
XEXP (in_rtx, 8).
2009-09-11 Bernd Schmidt <bernd.schmidt@analog.com>
From Jie Zhang <jie.zhang@analog.com>:
......
......@@ -305,9 +305,9 @@ print_rtx (const_rtx in_rtx)
break;
}
}
else if (i == 8 && JUMP_P (in_rtx) && XEXP (in_rtx, i) != NULL)
else if (i == 8 && JUMP_P (in_rtx) && JUMP_LABEL (in_rtx) != NULL)
/* Output the JUMP_LABEL reference. */
fprintf (outfile, "\n -> %d", INSN_UID (XEXP (in_rtx, i)));
fprintf (outfile, "\n -> %d", INSN_UID (JUMP_LABEL (in_rtx)));
else if (i == 0 && GET_CODE (in_rtx) == VALUE)
{
#ifndef GENERATOR_FILE
......
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