Commit ef39eedf by Eric Botcazou Committed by Eric Botcazou

print-tree.c (print_node): Print no_force_blk_flag for all types.

	* print-tree.c (print_node) <case tcc_type>: Print no_force_blk_flag
	for all types.

From-SVN: r206107
parent cc1719e8
2013-12-19 Eric Botcazou <ebotcazou@adacore.com>
* print-tree.c (print_node) <case tcc_type>: Print no_force_blk_flag
for all types.
2013-12-19 Monk Chiang <sh.chiang04@gmail.com>
* common/config/nds32/nds32-common.c (TARGET_DEFAULT_TARGET_FLAGS):
......@@ -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);
......
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