summaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
authormycroft <mycroft@138bc75d-0d04-0410-961f-82ee72b054a4>1992-07-08 22:22:23 +0000
committermycroft <mycroft@138bc75d-0d04-0410-961f-82ee72b054a4>1992-07-08 22:22:23 +0000
commitf7a758103e01ef44772fa9255c15e9b55ad6ac3f (patch)
tree565b477659da1e477cb7d67aec583ae8882af37d /gcc/print-tree.c
parentc05560a66bfeb83733b362d7d93a009a7b18b6b0 (diff)
downloadgcc-f7a758103e01ef44772fa9255c15e9b55ad6ac3f.tar.gz
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1529 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r--gcc/print-tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index 27d1591a541..b7c9e660d23 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);