diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-23 23:04:47 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-23 23:04:47 +0000 |
commit | c83f912328daa5957eb1d7e6e36a310321c4b4e8 (patch) | |
tree | 4544a3b963fced0869332b2cf0847b04bdf8c561 /gcc/print-tree.c | |
parent | 8c866b45aac0decda72b72e54c31a41996f6b473 (diff) | |
download | gcc-c83f912328daa5957eb1d7e6e36a310321c4b4e8.tar.gz |
* 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: svn+ssh://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.c | 2 |
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; } |