diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-03 19:23:35 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-03 19:23:35 +0000 |
commit | 9abd2cd79da82c4e0d0dfb36eb87ff600ace51df (patch) | |
tree | 219bb7714144485db8a26f9ad99fb10ea2468edd /gcc/print-rtl.c | |
parent | 52b37cd1be492204796aefb37477049832d1db5f (diff) | |
download | gcc-9abd2cd79da82c4e0d0dfb36eb87ff600ace51df.tar.gz |
* rtl.c (copy_rtx): Handle 'T' format letter.
* gensupport.c (collect_insn_data): Likewise.
* print-rtl.c (print_rtx): Print 'T' slots like 's'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43732 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index 1c4e6f312a2..aca67008502 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -163,16 +163,25 @@ print_rtx (in_rtx) for (; i < GET_RTX_LENGTH (GET_CODE (in_rtx)); i++) switch (*format_ptr++) { + const char *str; + + case 'T': + str = XTMPL (in_rtx, i); + goto string; + case 'S': case 's': - if (XSTR (in_rtx, i) == 0) + str = XSTR (in_rtx, i); + string: + + if (str == 0) fputs (dump_for_graph ? " \\\"\\\"" : " \"\"", outfile); else { if (dump_for_graph) - fprintf (outfile, " (\\\"%s\\\")", XSTR (in_rtx, i)); + fprintf (outfile, " (\\\"%s\\\")", str); else - fprintf (outfile, " (\"%s\")", XSTR (in_rtx, i)); + fprintf (outfile, " (\"%s\")", str); } sawclose = 1; break; |