Forgot to regen byterun.c.
Jarkko Hietaniemi [Sat, 23 Aug 2003 07:15:58 +0000 (07:15 +0000)]
p4raw-id: //depot/perl@20852

ext/ByteLoader/byterun.c

index abf8fec..c93b6cd 100644 (file)
@@ -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;
            }