* print-tree.c (print_node): Print the restrict qualifier.

From-SVN: r57045
This commit is contained in:
Dan Nicolaescu 2002-09-12 00:55:21 +00:00 committed by Richard Henderson
parent 6eedb9ca76
commit d1df930ba1
2 changed files with 7 additions and 0 deletions

View 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.

View 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))