diff options
author | reichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-02-10 13:49:19 +0000 |
---|---|---|
committer | reichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-02-10 13:49:19 +0000 |
commit | 674106a4d4542ea220b0159003be16ddce66f052 (patch) | |
tree | 11a54a0a7aad6bff3bb2619e323ef3332767fa2a /gcc/cp | |
parent | c7f5d117e4489b53762002ecba2abeecb658c250 (diff) | |
download | gcc-674106a4d4542ea220b0159003be16ddce66f052.tar.gz |
* class.c (debug_class): Remove extern.
(debug_thunks): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@110836 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/class.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index e3ceaa22401..c85115e42b2 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2006-02-10 Volker Reichelt <reichelt@igpm.rwth-aachen.de> + + * class.c (debug_class): Remove extern. + (debug_thunks): Likewise. + 2006-02-09 Gabriel Dos Reis <gdr@integrable-solutions.net> * typeck.c (string_conv_p): Don't test for flag_const_strings. diff --git a/gcc/cp/class.c b/gcc/cp/class.c index f3240113be3..69fbd36c210 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -6514,7 +6514,7 @@ dump_class_hierarchy_1 (FILE *stream, int flags, tree t) /* Debug interface to hierarchy dumping. */ -extern void +void debug_class (tree t) { dump_class_hierarchy_1 (stderr, TDF_SLIM, t); @@ -6644,7 +6644,7 @@ dump_thunk (FILE *stream, int indent, tree thunk) /* Dump the thunks for FN. */ -extern void +void debug_thunks (tree fn) { dump_thunk (stderr, 0, fn); |