aboutsummaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
authorMartin von Loewis <loewis@informatik.hu-berlin.de>1998-03-23 23:04:47 +0000
committerJeffrey A Law <law@cygnus.com>1998-03-23 23:04:47 +0000
commit64855d96fe084bf22d9f622a57586dfdf3d3c917 (patch)
tree4544a3b963fced0869332b2cf0847b04bdf8c561 /gcc/print-tree.c
parenta23d53ab3f53d905e30bd8e97fcc3760dee49872 (diff)
* c-lang.c (lang_print_xnode): New function.
* objc/objc-act.c (lang_print_xnode): Likewise. * print-tree.c (print_node): Call it * com.c (lang_print_xnode): New function. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@18789 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r--gcc/print-tree.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index 3d43d18b8a2..7f37e822809 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -672,6 +672,8 @@ print_node (file, prefix, node, indent)
break;
default:
+ if (TREE_CODE_CLASS (TREE_CODE (node)) == 'x')
+ lang_print_xnode (file, node, indent);
break;
}