aboutsummaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
author(no author) <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4>2004-04-22 18:51:16 +0000
committer(no author) <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4>2004-04-22 18:51:16 +0000
commit3620a217adfbde3c2249b18205d19c13b317f3b0 (patch)
tree8c306f5f27b8edf1ef6e9ea83e476b9872e5642a /gcc/print-tree.c
parent86248a4b2696dd0f45ceabfd239e870ba0d36c89 (diff)
This commit was manufactured by cvs2svn to create tagapple/gcc-1742
'apple-gcc-1742'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/tags/apple-gcc-1742@81049 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r--gcc/print-tree.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index 259466cebb6..e123ef15945 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -275,6 +275,10 @@ print_node (FILE *file, const char *prefix, tree node, int indent)
fputs (" static", file);
if (TREE_DEPRECATED (node))
fputs (" deprecated", file);
+ /* APPLE LOCAL begin unavailable (Radar 2809697) ilr */
+ if (TREE_UNAVAILABLE (node))
+ fputs (" unavailable", file);
+ /* APPLE LOCAL end unavailable ilr */
if (TREE_VISITED (node))
fputs (" visited", file);
if (TREE_LANG_FLAG_0 (node))
@@ -318,6 +322,10 @@ print_node (FILE *file, const char *prefix, tree node, int indent)
if (DECL_NONLOCAL (node))
fputs (" nonlocal", file);
+ /* APPLE LOCAL coalescing */
+ if (DECL_COALESCED (node))
+ fputs (" coalesced", file);
+
if (TREE_CODE (node) == TYPE_DECL && TYPE_DECL_SUPPRESS_DEBUG (node))
fputs (" suppress-debug", file);