X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/6fca0082ec4f3b34a0dabc78331bad8c22489dd2..17bcfd59e475bc04ce8413d24f07dfe2b5f2ce1c:/universal.c diff --git a/universal.c b/universal.c index e674d50..7bbcbdb 100644 --- a/universal.c +++ b/universal.c @@ -69,9 +69,11 @@ S_isa_lookup(pTHX_ HV *stash, const char *name, const HV* const name_stash, SV** const svp = (SV**)hv_fetch(hv, name, len, FALSE); if (svp) { SV * const sv = *svp; +#ifdef DEBUGGING if (sv != &PL_sv_undef) DEBUG_o( Perl_deb(aTHX_ "Using cached ISA %s for package %s\n", name, hvname) ); +#endif return (sv == &PL_sv_yes); } }