diff options
author | Tom Hughes <tom@compton.nu> | 1999-04-24 19:11:59 +0100 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-10 03:48:08 +0000 |
commit | b295d1132eed0f33e5e8fda2cd65ee1297fdabdb (patch) | |
tree | 2cc2bb16f505a1d5c1a468bdce46a301cdf37e84 /byterun.h | |
parent | f2f614a63111e79068118dba78b4ac57891a3382 (diff) | |
download | perl-b295d1132eed0f33e5e8fda2cd65ee1297fdabdb.tar.gz |
applied suggested patch, with win32 and PERL_OBJECT additions
Message-ID: <609bdff748.tom@compton.compton.nu>
Subject: ByteLoader patch
p4raw-id: //depot/perl@3356
Diffstat (limited to 'byterun.h')
-rw-r--r-- | byterun.h | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -17,9 +17,7 @@ struct bytestream { }; #endif /* INDIRECT_BGET_MACROS */ -#ifndef PERL_OBJECT void *bset_obj_store _((void *, I32)); -#endif enum { INSN_RET, /* 0 */ @@ -138,10 +136,11 @@ enum { INSN_COP_SEQ, /* 113 */ INSN_COP_ARYBASE, /* 114 */ INSN_COP_LINE, /* 115 */ - INSN_MAIN_START, /* 116 */ - INSN_MAIN_ROOT, /* 117 */ - INSN_CURPAD, /* 118 */ - MAX_INSN = 118 + INSN_COP_WARNINGS, /* 116 */ + INSN_MAIN_START, /* 117 */ + INSN_MAIN_ROOT, /* 118 */ + INSN_CURPAD, /* 119 */ + MAX_INSN = 119 }; enum { |