diff options
Diffstat (limited to 'ext/ByteLoader/byterun.h')
-rw-r--r-- | ext/ByteLoader/byterun.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ext/ByteLoader/byterun.h b/ext/ByteLoader/byterun.h index f95f9f8de2..c293160340 100644 --- a/ext/ByteLoader/byterun.h +++ b/ext/ByteLoader/byterun.h @@ -154,3 +154,28 @@ enum { OPt_COP /* 11 */ }; +EXT int PL_optype_size[] +#ifdef DOINIT += { + sizeof(OP), + sizeof(UNOP), + sizeof(BINOP), + sizeof(LOGOP), + sizeof(CONDOP), + sizeof(LISTOP), + sizeof(PMOP), + sizeof(SVOP), + sizeof(GVOP), + sizeof(PVOP), + sizeof(LOOP), + sizeof(COP) +} +#endif /* DOINIT */ +; + +#define INIT_SPECIALSV_LIST STMT_START { \ + PL_specialsv_list[0] = Nullsv; \ + PL_specialsv_list[1] = &PL_sv_undef; \ + PL_specialsv_list[2] = &PL_sv_yes; \ + PL_specialsv_list[3] = &PL_sv_no; \ + } STMT_END |