* print-rtl.c (print_rtx): Limit last 'u' change to LABEL_REF.

From-SVN: r30024
This commit is contained in:
Richard Henderson 1999-10-15 14:26:33 -07:00 committed by Richard Henderson
parent 810c1b83f6
commit d5e3e85b18
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,7 @@
Fri Oct 15 14:25:19 1999 Richard Henderson <rth@cygnus.com>
* print-rtl.c (print_rtx): Limit last 'u' change to LABEL_REF.
Fri Oct 15 13:48:45 1999 Richard Henderson <rth@cygnus.com>
* mips.c (function_prologue): Fix argument types.

View File

@ -302,9 +302,8 @@ print_rtx (in_rtx)
rtx sub = XEXP (in_rtx, i);
enum rtx_code subc = GET_CODE (sub);
if (subc != CODE_LABEL
&& subc != NOTE
&& GET_RTX_CLASS (subc) != 'i')
if (GET_CODE (in_rtx) == LABEL_REF
&& subc != CODE_LABEL)
goto do_e;
if (flag_dump_unnumbered)
@ -313,7 +312,7 @@ print_rtx (in_rtx)
fprintf (outfile, " %d", INSN_UID (sub));
}
else
fputs (" (nil)", outfile);
fputs (" 0", outfile);
sawclose = 0;
break;