diff options
author | Charles Hannum <mycroft@gnu.org> | 1992-07-08 22:22:23 +0000 |
---|---|---|
committer | Charles Hannum <mycroft@gnu.org> | 1992-07-08 22:22:23 +0000 |
commit | c5caa35076b08db79b363624678265ec9a1d1ec9 (patch) | |
tree | 565b477659da1e477cb7d67aec583ae8882af37d /gcc/print-tree.c | |
parent | 00b0e2a77eb26ae4a0e0302e3a81b7b6d0c95b33 (diff) | |
download | gcc-c5caa35076b08db79b363624678265ec9a1d1ec9.zip gcc-c5caa35076b08db79b363624678265ec9a1d1ec9.tar.gz gcc-c5caa35076b08db79b363624678265ec9a1d1ec9.tar.bz2 |
*** empty log message ***
From-SVN: r1529
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 27d1591..b7c9e66 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -329,8 +329,6 @@ print_node (file, prefix, node, indent) fputs (" bit-field", file); if (DECL_VIRTUAL_P (node)) fputs (" virtual", file); - if (DECL_FROM_INLINE (node)) - fputs (" from_inline", file); if (DECL_IGNORED_P (node)) fputs (" ignored", file); if (DECL_IN_SYSTEM_HEADER (node)) @@ -368,6 +366,8 @@ print_node (file, prefix, node, indent) if (TREE_CODE (node) == FIELD_DECL) print_node (file, "bitpos", DECL_FIELD_BITPOS (node), indent + 4); print_node_brief (file, "context", DECL_CONTEXT (node), indent + 4); + print_node_brief (file, "abstract_origin", + DECL_ABSTRACT_ORIGIN (node), indent + 4); print_node (file, "arguments", DECL_ARGUMENTS (node), indent + 4); print_node (file, "result", DECL_RESULT (node), indent + 4); |