diff options
author | Charles Hannum <mycroft@gnu.org> | 1992-04-02 08:44:47 +0000 |
---|---|---|
committer | Charles Hannum <mycroft@gnu.org> | 1992-04-02 08:44:47 +0000 |
commit | d64be5ecc9c27800b5e6cf09ec50a1e1ad1d5d2a (patch) | |
tree | d4d55b209bc3b2c814552e98015e351b7e865326 | |
parent | c05a9b68b8c01cb9d8f5fddb35048b8b7dd926ed (diff) | |
download | gcc-d64be5ecc9c27800b5e6cf09ec50a1e1ad1d5d2a.zip gcc-d64be5ecc9c27800b5e6cf09ec50a1e1ad1d5d2a.tar.gz gcc-d64be5ecc9c27800b5e6cf09ec50a1e1ad1d5d2a.tar.bz2 |
*** empty log message ***
From-SVN: r665
-rw-r--r-- | gcc/print-rtl.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index ca048d6..7e8d220 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -161,9 +161,14 @@ print_rtx (in_rtx) case 'u': 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 - fprintf(outfile, " 0"); + fprintf (outfile, " 0"); + sawclose = 0; + break; + + case '*': + fprintf (outfile, " Unknown"); sawclose = 0; break; |