Really define do_report_used() only if DEBUGGING.
Jarkko Hietaniemi [Tue, 20 Nov 2001 20:12:06 +0000 (20:12 +0000)]
p4raw-id: //depot/perl@13139

sv.c

diff --git a/sv.c b/sv.c
index 7a0b5b3..b1da4a8 100644 (file)
--- a/sv.c
+++ b/sv.c
@@ -295,18 +295,19 @@ S_visit(pTHX_ SVFUNC_t f)
     return visited;
 }
 
+#ifdef DEBUGGING
+
 /* called by sv_report_used() for each live SV */
 
 static void
 do_report_used(pTHX_ SV *sv)
 {
-#ifdef DEBUGGING
     if (SvTYPE(sv) != SVTYPEMASK) {
        PerlIO_printf(Perl_debug_log, "****\n");
        sv_dump(sv);
     }
-#endif
 }
+#endif
 
 /*
 =for apidoc sv_report_used