From: jakub Date: Tue, 4 Nov 2008 20:07:26 +0000 (+0000) Subject: * print-tree.c (print_node): Don't print DECL_INITIAL X-Git-Tag: upstream/4.9.2~39055 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=48f76b6b186984373ef2c5259f6b8dd3fce95a05;p=platform%2Fupstream%2Flinaro-gcc.git * print-tree.c (print_node): Don't print DECL_INITIAL for PARM_DECL. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@141585 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2c42f92..13aad41 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2008-11-04 Jakub Jelinek + * print-tree.c (print_node): Don't print DECL_INITIAL + for PARM_DECL. + PR c/37106 * c-common.c (parse_optimize_options): Save and restore flag_strict_aliasing around decode_options call. diff --git a/gcc/print-tree.c b/gcc/print-tree.c index fb9f126..b3cd335 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -502,7 +502,9 @@ print_node (FILE *file, const char *prefix, tree node, int indent) { print_node_brief (file, "attributes", DECL_ATTRIBUTES (node), indent + 4); - print_node_brief (file, "initial", DECL_INITIAL (node), indent + 4); + if (code != PARM_DECL) + print_node_brief (file, "initial", DECL_INITIAL (node), + indent + 4); } if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL)) {