summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-08-18 22:09:17 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-08-24 23:37:59 -0700
commit1e4b6aa1907f271ce023ffe6f03439e2ce7f65dc (patch)
tree66d2f60ccc3e423a6fd77021258a20e81ebfcefc /proto.h
parent46e00a91c0fa7d86de7f65504ba0a402c422d58b (diff)
downloadperl-1e4b6aa1907f271ce023ffe6f03439e2ce7f65dc.tar.gz
Move coresub op-creation from gv.c to op.c
For functions that take handles as arguments, this code will need to call static functions in op.c, like is_handle_constructor. While we could make is_handle_constructor into a non-static function and call it from gv.c, that seems backwards, as it would result in a lot of op-manipulation code in the middle of gv.c. So this commit creates a new function in op.c, called coresub_op, which is only called from gv.c, from the &CORE::sub code.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/proto.h b/proto.h
index ea83f25b70..53f2931a68 100644
--- a/proto.h
+++ b/proto.h
@@ -577,6 +577,11 @@ PERL_CALLCONV SV * Perl_core_prototype(pTHX_ SV *sv, const char *name, const int
#define PERL_ARGS_ASSERT_CORE_PROTOTYPE \
assert(name)
+PERL_CALLCONV OP * Perl_coresub_op(pTHX_ SV *coreargssv, const int code, const int opnum)
+ __attribute__nonnull__(pTHX_1);
+#define PERL_ARGS_ASSERT_CORESUB_OP \
+ assert(coreargssv)
+
PERL_CALLCONV PERL_CONTEXT* Perl_create_eval_scope(pTHX_ U32 flags);
PERL_CALLCONV void Perl_croak(pTHX_ const char* pat, ...)
__attribute__noreturn__