* print-tree.c (print_node): Print the restrict qualifier.
authorDan Nicolaescu <dann@ics.uci.edu>
Thu, 12 Sep 2002 00:55:21 +0000 (00:55 +0000)
committerRichard Henderson <rth@gcc.gnu.org>
Thu, 12 Sep 2002 00:55:21 +0000 (17:55 -0700)
From-SVN: r57045

gcc/ChangeLog
gcc/print-tree.c

index 2db0e7d3dbf33458e185978d36999e7d5093aac6..07a8622684a1c3d3d85a5459756f6ac40dad5811 100644 (file)
@@ -1,3 +1,7 @@
+2002-09-11  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * print-tree.c (print_node): Print the restrict qualifier.
+
 2002-09-11  Janis Johnson  <janis187@us.ibm.com>
 
        * doc/install.texi: Fix typos.
index bb03d81f2a8375a579521c1c0f033eb168224e0e..ccfa19bbd761febf2cb53edecb605f7d1f6afa6c 100644 (file)
@@ -508,6 +508,9 @@ print_node (file, prefix, node, indent)
       if (TYPE_PACKED (node))
        fputs (" packed", file);
 
+      if (TYPE_RESTRICT (node))
+       fputs (" restrict", file);
+
       if (TYPE_LANG_FLAG_0 (node))
        fputs (" type_0", file);
       if (TYPE_LANG_FLAG_1 (node))