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 | |
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
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/gensupport.c | 2 | ||||
-rw-r--r-- | gcc/print-rtl.c | 15 | ||||
-rw-r--r-- | gcc/rtl.c | 1 |
4 files changed, 20 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a021f3dcbab..175c5df1a4c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2001-07-03 Zack Weinberg <zackw@stanford.edu> + + * rtl.c (copy_rtx): Handle 'T' format letter. + * gensupport.c (collect_insn_data): Likewise. + * print-rtl.c (print_rtx): Print 'T' slots like 's'. + 2001-07-03 Nick Clifton <nickc@cambridge.redhat.com> * doc/invoke.texi (Directory Options): Specifiy range for <N> in diff --git a/gcc/gensupport.c b/gcc/gensupport.c index 6bad18e051e..bd80ca47389 100644 --- a/gcc/gensupport.c +++ b/gcc/gensupport.c @@ -453,7 +453,7 @@ collect_insn_data (pattern, palt, pmax) collect_insn_data (XVECEXP (pattern, i, j), palt, pmax); break; - case 'i': case 'w': case '0': case 's': case 'S': + case 'i': case 'w': case '0': case 's': case 'S': case 'T': break; default: 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; diff --git a/gcc/rtl.c b/gcc/rtl.c index 0e4a9b33da5..de5e0481843 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -420,6 +420,7 @@ copy_rtx (orig) case 'i': case 's': case 'S': + case 'T': case 'u': case '0': /* These are left unchanged. */ |