summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-08-23 07:15:58 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-08-23 07:15:58 +0000
commitebc18564261e706c77f947245d26506241c40f11 (patch)
treec00d679f69aa6dae34250379459f245b15d3ce18 /ext
parenta958818a694caec0b76e9ef74fd37212931fdce7 (diff)
downloadperl-ebc18564261e706c77f947245d26506241c40f11.tar.gz
Forgot to regen byterun.c.
p4raw-id: //depot/perl@20852
Diffstat (limited to 'ext')
-rw-r--r--ext/ByteLoader/byterun.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/ByteLoader/byterun.c b/ext/ByteLoader/byterun.c
index abf8fecefd..c93b6cdeda 100644
--- a/ext/ByteLoader/byterun.c
+++ b/ext/ByteLoader/byterun.c
@@ -175,7 +175,7 @@ byterun(pTHX_ register struct byteloader_state *bstate)
case INSN_PV_CUR: /* 15 */
{
STRLEN arg;
- BGET_U32(arg);
+ BGET_PADOFFSET(arg);
bstate->bs_pv.xpv_cur = arg;
break;
}
@@ -227,14 +227,14 @@ byterun(pTHX_ register struct byteloader_state *bstate)
case INSN_XPV_CUR: /* 23 */
{
STRLEN arg;
- BGET_U32(arg);
+ BGET_PADOFFSET(arg);
SvCUR(bstate->bs_sv) = arg;
break;
}
case INSN_XPV_LEN: /* 24 */
{
STRLEN arg;
- BGET_U32(arg);
+ BGET_PADOFFSET(arg);
SvLEN(bstate->bs_sv) = arg;
break;
}
@@ -255,14 +255,14 @@ byterun(pTHX_ register struct byteloader_state *bstate)
case INSN_XLV_TARGOFF: /* 27 */
{
STRLEN arg;
- BGET_U32(arg);
+ BGET_PADOFFSET(arg);
LvTARGOFF(bstate->bs_sv) = arg;
break;
}
case INSN_XLV_TARGLEN: /* 28 */
{
STRLEN arg;
- BGET_U32(arg);
+ BGET_PADOFFSET(arg);
LvTARGLEN(bstate->bs_sv) = arg;
break;
}
@@ -444,7 +444,7 @@ byterun(pTHX_ register struct byteloader_state *bstate)
case INSN_XCV_DEPTH: /* 55 */
{
long arg;
- BGET_I32(arg);
+ BGET_long(arg);
CvDEPTH(bstate->bs_sv) = arg;
break;
}
@@ -479,7 +479,7 @@ byterun(pTHX_ register struct byteloader_state *bstate)
case INSN_AV_EXTEND: /* 60 */
{
SSize_t arg;
- BGET_I32(arg);
+ BGET_PADOFFSET(arg);
BSET_av_extend(bstate->bs_sv, arg);
break;
}
@@ -500,14 +500,14 @@ byterun(pTHX_ register struct byteloader_state *bstate)
case INSN_XAV_FILL: /* 63 */
{
SSize_t arg;
- BGET_I32(arg);
+ BGET_PADOFFSET(arg);
AvFILLp(bstate->bs_sv) = arg;
break;
}
case INSN_XAV_MAX: /* 64 */
{
SSize_t arg;
- BGET_I32(arg);
+ BGET_PADOFFSET(arg);
AvMAX(bstate->bs_sv) = arg;
break;
}