From d1df930ba1d06255ee8f0f09fbd28ed77039f48f Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Thu, 12 Sep 2002 00:55:21 +0000 Subject: [PATCH] * print-tree.c (print_node): Print the restrict qualifier. From-SVN: r57045 --- gcc/ChangeLog | 4 ++++ gcc/print-tree.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2db0e7d3dbf..07a8622684a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-09-11 Dan Nicolaescu + + * print-tree.c (print_node): Print the restrict qualifier. + 2002-09-11 Janis Johnson * doc/install.texi: Fix typos. diff --git a/gcc/print-tree.c b/gcc/print-tree.c index bb03d81f2a8..ccfa19bbd76 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -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))