diff options
author | Mark Mitchell <mark@codesourcery.com> | 2000-11-10 04:50:53 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-11-10 04:50:53 +0000 |
commit | 13507bd80dc47454cca3220f14dca27710e15c8f (patch) | |
tree | 4246e43687c1babe51887e8eedea1afaecc70cf5 /gcc/cp | |
parent | 0a7394bc1ac70f2a16ee15731457af04fb0b6e48 (diff) | |
download | gcc-13507bd80dc47454cca3220f14dca27710e15c8f.zip gcc-13507bd80dc47454cca3220f14dca27710e15c8f.tar.gz gcc-13507bd80dc47454cca3220f14dca27710e15c8f.tar.bz2 |
c-dump.c (dequeue_and_dump): Dump function bodies.
* c-dump.c (dequeue_and_dump): Dump function bodies.
* dump.c (cp_dump_tree): Don't dump function bodies here.
From-SVN: r37359
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/cp/dump.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 9d79a4c..f05fc60 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,7 @@ 2000-11-09 Mark Mitchell <mark@codesourcery.com> + * dump.c (cp_dump_tree): Don't dump function bodies here. + * Make-lang.in (CXX_C_OBJS): Add c-dump.o. (dump.o): Update dependency list. * cp-tree.h (DECL_MAYBE_TEMPLATE): Remove. diff --git a/gcc/cp/dump.c b/gcc/cp/dump.c index 077b333..9be8d88 100644 --- a/gcc/cp/dump.c +++ b/gcc/cp/dump.c @@ -107,8 +107,6 @@ cp_dump_tree (di, t) } if (DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION (t)) dump_string (di, "pseudo tmpl"); - - dump_child ("body", DECL_SAVED_TREE (t)); } else { |