@@ -4178,13 +4178,6 @@ PERL_CALLCONV void Perl_op_clear(pTHX_ OP* o)
41784178#define PERL_ARGS_ASSERT_OP_CLEAR \
41794179 assert (o )
41804180
4181- PERL_CALLCONV OP * Perl_op_clone_optree (pTHX_ OP * o , bool init )
4182- __attribute__global__
4183- __attribute__warn_unused_result__
4184- __attribute__nonnull__ (pTHX_1 );
4185- #define PERL_ARGS_ASSERT_OP_CLONE_OPTREE \
4186- assert (o )
4187-
41884181PERL_CALLCONV OP * Perl_op_contextualize (pTHX_ OP * o , I32 context )
41894182 __attribute__global__
41904183 __attribute__nonnull__ (pTHX_1 );
@@ -8077,6 +8070,18 @@ STATIC bool S_cv_check_inline(pTHX_ const OP *o, CV *compcv)
80778070#define PERL_ARGS_ASSERT_CV_CHECK_INLINE \
80788071 assert (o ); assert (compcv )
80798072
8073+ STATIC OP * S_cv_do_inline (pTHX_ OP * parent , OP * o , OP * cvop , CV * cv )
8074+ __attribute__nonnull__ (pTHX_2 )
8075+ __attribute__nonnull__ (pTHX_3 )
8076+ __attribute__nonnull__ (pTHX_4 );
8077+ #define PERL_ARGS_ASSERT_CV_DO_INLINE \
8078+ assert (o ); assert (cvop ); assert (cv )
8079+
8080+ STATIC OP * S_op_clone_sv (pTHX_ OP * o )
8081+ __attribute__nonnull__ (pTHX_1 );
8082+ #define PERL_ARGS_ASSERT_OP_CLONE_SV \
8083+ assert (o )
8084+
80808085# endif
80818086# endif
80828087#endif
@@ -8799,13 +8804,6 @@ STATIC void S_const_sv_xsub(pTHX_ CV* cv)
87998804#ifndef PERL_NO_INLINE_FUNCTIONS
88008805PERL_STATIC_INLINE const char * S_core_type_name (pTHX_ core_types_t t );
88018806#endif
8802- STATIC OP * S_cv_do_inline (pTHX_ OP * parent , OP * o , OP * cvop , CV * cv )
8803- __attribute__nonnull__ (pTHX_2 )
8804- __attribute__nonnull__ (pTHX_3 )
8805- __attribute__nonnull__ (pTHX_4 );
8806- #define PERL_ARGS_ASSERT_CV_DO_INLINE \
8807- assert (o ); assert (cvop ); assert (cv )
8808-
88098807STATIC void S_do_method_finalize (pTHX_ const HV * klass , const CV * cv , OP * o , const PADOFFSET self )
88108808 __attribute__nonnull__ (pTHX_1 )
88118809 __attribute__nonnull__ (pTHX_2 )
@@ -8885,11 +8883,6 @@ STATIC void S_op_check_type(pTHX_ OP* o, OP* left, OP* right, bool is_assign)
88858883#define PERL_ARGS_ASSERT_OP_CHECK_TYPE \
88868884 assert (o ); assert (left ); assert (right )
88878885
8888- STATIC OP * S_op_clone_sv (pTHX_ OP * o )
8889- __attribute__nonnull__ (pTHX_1 );
8890- #define PERL_ARGS_ASSERT_OP_CLONE_SV \
8891- assert (o )
8892-
88938886STATIC SV * S_op_const_sv (pTHX_ const OP * o , CV * cv , bool allow_lex )
88948887 __attribute__nonnull__ (pTHX_1 )
88958888 __attribute__nonnull__ (pTHX_2 );
@@ -11279,6 +11272,13 @@ PERL_CALLCONV U16 Perl_numfields(pTHX_ const HV* klass)
1127911272#define PERL_ARGS_ASSERT_NUMFIELDS \
1128011273 assert (klass )
1128111274
11275+ PERL_CALLCONV OP * Perl_op_clone_optree (pTHX_ OP * o , bool init )
11276+ __attribute__global__
11277+ __attribute__warn_unused_result__
11278+ __attribute__nonnull__ (pTHX_1 );
11279+ #define PERL_ARGS_ASSERT_OP_CLONE_OPTREE \
11280+ assert (o )
11281+
1128211282PERL_CALLCONV void Perl_op_dump_cv (pTHX_ const OP * o , const CV * cv )
1128311283 __attribute__global__
1128411284 __attribute__nonnull__ (pTHX_1 );
0 commit comments