rtl.c (copy_rtx): Handle 'T' format letter.
authorZack Weinberg <zackw@stanford.edu>
Tue, 3 Jul 2001 19:23:35 +0000 (19:23 +0000)
committerZack Weinberg <zack@gcc.gnu.org>
Tue, 3 Jul 2001 19:23:35 +0000 (19:23 +0000)
* rtl.c (copy_rtx): Handle 'T' format letter.
* gensupport.c (collect_insn_data): Likewise.
* print-rtl.c (print_rtx): Print 'T' slots like 's'.

From-SVN: r43732

gcc/ChangeLog
gcc/gensupport.c
gcc/print-rtl.c
gcc/rtl.c

index a021f3dcbab1cbbd01d170eaa68c87b9c38c682e..175c5df1a4c86a9e9be7807983439052ecbc9e7a 100644 (file)
@@ -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
index 6bad18e051e4f4c3d58d0005460e31b9803334af..bd80ca47389b4c9787b8aca30e1d8cc97c67160c 100644 (file)
@@ -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:
index 1c4e6f312a2a32f3a3b54a46b2b2e2dab5ca40ad..aca67008502b3b58d61a2942e84df12661655f20 100644 (file)
@@ -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;
index 0e4a9b33da56ecf0e3e48175024b0edefa622576..de5e048184300a61f88921d410973569a8f32266 100644 (file)
--- 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.  */