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/f | |
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/f')
-rw-r--r-- | gcc/f/ChangeLog.egcs | 4 | ||||
-rw-r--r-- | gcc/f/com.c | 10 |
2 files changed, 14 insertions, 0 deletions
diff --git a/gcc/f/ChangeLog.egcs b/gcc/f/ChangeLog.egcs index f39a6f7fef9..ead0d0dfebe 100644 --- a/gcc/f/ChangeLog.egcs +++ b/gcc/f/ChangeLog.egcs @@ -1,3 +1,7 @@ +1998-03-24 Martin von Loewis <loewis@informatik.hu-berlin.de> + + * com.c (lang_print_xnode): New function. + Sun Mar 22 00:50:42 1998 Nick Clifton <nickc@cygnus.com> Geoff Noer <noer@cygnus.com> diff --git a/gcc/f/com.c b/gcc/f/com.c index 0f895a91a9e..5e5d4ef7125 100644 --- a/gcc/f/com.c +++ b/gcc/f/com.c @@ -14842,6 +14842,16 @@ lang_decode_option (p) return ffe_decode_option (p); } +/* used by print-tree.c */ + +void +lang_print_xnode (file, node, indent) + FILE *file UNUSED; + tree node UNUSED; + int indent UNUSED; +{ +} + void lang_finish () { |