diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-03 23:45:56 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-01-03 23:45:56 +0000 |
commit | fe644b69d013e77c7fc2db2a9863969d4f564561 (patch) | |
tree | a2cb1398bd46b8decaea84f1b7de8c7cd35e6046 /gcc/print-tree.c | |
parent | 90079d10dd355193fe289fa0bfcb0d7be880d45a (diff) | |
parent | 04e0495a6da35f3b0bcedbd75908cb6e9ba8ff8f (diff) | |
download | gcc-fe644b69d013e77c7fc2db2a9863969d4f564561.tar.gz |
Merge in trunk.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@206327 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 649ff4f64da..e26b0633d58 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -1,5 +1,5 @@ /* Prints out tree in human readable form - GCC - Copyright (C) 1990-2013 Free Software Foundation, Inc. + Copyright (C) 1990-2014 Free Software Foundation, Inc. This file is part of GCC. @@ -575,16 +575,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); |