From: Eric Botcazou Date: Thu, 19 Dec 2013 09:13:13 +0000 (+0000) Subject: print-tree.c (print_node): Print no_force_blk_flag for all types. X-Git-Tag: releases/gcc-4.9.0~1992 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ef39eedf9b5aa0f5d07e5101389529a7a5a39f37;p=thirdparty%2Fgcc.git print-tree.c (print_node): Print no_force_blk_flag for all types. * print-tree.c (print_node) : Print no_force_blk_flag for all types. From-SVN: r206107 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5cd142256aca..e4bb6b724ed0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-12-19 Eric Botcazou + + * print-tree.c (print_node) : Print no_force_blk_flag + for all types. + 2013-12-19 Monk Chiang * common/config/nds32/nds32-common.c (TARGET_DEFAULT_TARGET_FLAGS): diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 1f4bf222aa12..f4a98d564aed 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -583,16 +583,12 @@ print_node (FILE *file, const char *prefix, tree node, int indent) if (TYPE_UNSIGNED (node)) fputs (" unsigned", file); - /* The no-force-blk flag is used for different things in - different types. */ - if ((code == RECORD_TYPE - || code == UNION_TYPE - || code == QUAL_UNION_TYPE) - && TYPE_NO_FORCE_BLK (node)) + if (TYPE_NO_FORCE_BLK (node)) fputs (" no-force-blk", file); if (TYPE_STRING_FLAG (node)) fputs (" string-flag", file); + if (TYPE_NEEDS_CONSTRUCTING (node)) fputs (" needs-constructing", file);