never been in a released version of perl, so this change has no compatibility
implications.
: Only used in op.c
xpoM |struct refcounted_he *|store_cop_label \
|NULLOK struct refcounted_he *const chain|NN const char *label
-: Only used in univeral.c
-poM |HV * |get_isa_hash |NN HV *const stash
+so |HV * |get_isa_hash |NN HV *const stash
END_EXTERN_C
/*
#define PERL_ARGS_ASSERT_STORE_COP_LABEL \
assert(label)
-PERL_CALLCONV HV * Perl_get_isa_hash(pTHX_ HV *const stash)
+STATIC HV * S_get_isa_hash(pTHX_ HV *const stash)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_GET_ISA_HASH \
assert(stash)
#include "perliol.h" /* For the PERLIO_F_XXX */
#endif
-HV *
-Perl_get_isa_hash(pTHX_ HV *const stash)
+static HV *
+S_get_isa_hash(pTHX_ HV *const stash)
{
dVAR;
struct mro_meta *const meta = HvMROMETA(stash);
{
dVAR;
const struct mro_meta *const meta = HvMROMETA(stash);
- HV *const isa = meta->isa ? meta->isa : Perl_get_isa_hash(aTHX_ stash);
+ HV *const isa = meta->isa ? meta->isa : S_get_isa_hash(aTHX_ stash);
STRLEN len = strlen(name);
const HV *our_stash;