aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Reichelt <reichelt@igpm.rwth-aachen.de>2006-02-10 13:49:19 +0000
committerVolker Reichelt <reichelt@gcc.gnu.org>2006-02-10 13:49:19 +0000
commitac1f3b7e6a5a8e2c64de9a6be9135a7423e95bd5 (patch)
tree11a54a0a7aad6bff3bb2619e323ef3332767fa2a
parent00e850451cfa2fee4f2c52442896522a6b61d3a1 (diff)
downloadgcc-ac1f3b7e6a5a8e2c64de9a6be9135a7423e95bd5.zip
gcc-ac1f3b7e6a5a8e2c64de9a6be9135a7423e95bd5.tar.gz
gcc-ac1f3b7e6a5a8e2c64de9a6be9135a7423e95bd5.tar.bz2
class.c (debug_class): Remove extern.
* class.c (debug_class): Remove extern. (debug_thunks): Likewise. From-SVN: r110836
-rw-r--r--gcc/cp/ChangeLog5
-rw-r--r--gcc/cp/class.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index e3ceaa2..c85115e 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 f324011..69fbd36 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);