diff options
Diffstat (limited to 'ext/B/B.xs')
-rw-r--r-- | ext/B/B.xs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/B/B.xs b/ext/B/B.xs index 0c44e45bad..1901edde9e 100644 --- a/ext/B/B.xs +++ b/ext/B/B.xs @@ -1229,7 +1229,6 @@ pv(o) ST(0) = newSVpvn_flags(o->op_pv, strlen(o->op_pv), SVs_TEMP); #define COP_label(o) CopLABEL(o) -#define COP_arybase(o) CopARYBASE_get(o) MODULE = B PACKAGE = B::COP PREFIX = COP_ @@ -1270,6 +1269,10 @@ COP_stashpv(o) I32 COP_arybase(o) B::COP o + CODE: + RETVAL = 0; + OUTPUT: + RETVAL void COP_warnings(o) |