coincidentally were both from changes I made)
p4raw-id: //depot/perl@33814
GV *
Perl_gv_fetchmethod_autoload(pTHX_ HV *stash, const char *name, I32 autoload)
{
+ PERL_ARGS_ASSERT_GV_FETCHMETHOD_AUTOLOAD;
+
return gv_fetchmethod_flags(stash, name, autoload ? GV_AUTOLOAD : 0);
}
const U32 autoload = flags & GV_AUTOLOAD;
const U32 do_croak = flags & GV_CROAK;
- PERL_ARGS_ASSERT_GV_FETCHMETHOD_AUTOLOAD;
+ PERL_ARGS_ASSERT_GV_FETCHMETHOD_FLAGS;
if (SvTYPE(stash) < SVt_PVHV)
stash = NULL;
struct refcounted_he *
Perl_store_cop_label(pTHX_ struct refcounted_he *const chain, const char *label)
{
+ PERL_ARGS_ASSERT_STORE_COP_LABEL;
+
return refcounted_he_new_common(chain, ":", 1, HVrhek_PV, HVrhek_PV,
label, strlen(label));
}