Commit d1df930b by Dan Nicolaescu Committed by Richard Henderson

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

From-SVN: r57045
parent 6eedb9ca
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.
......
......@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment