Revert 20233 + s/GvAVn/GvAV/) + rerun 'perl bytecode.pl'.
Jarkko Hietaniemi [Mon, 28 Jul 2003 04:26:58 +0000 (04:26 +0000)]
(from Enache)

p4raw-id: //depot/perl@20246

bytecode.pl
ext/ByteLoader/byterun.c

index 1f30d9b..d4b40fb 100644 (file)
@@ -486,7 +486,7 @@ push_end    PL_endav                                svindex         x
 curstash       *(SV**)&PL_curstash                     svindex
 defstash       *(SV**)&PL_defstash                     svindex
 data           none                                    U8              x
-incav          *(SV**)&PL_incgv                        svindex
+incav          *(SV**)&GvAV(PL_incgv)                  svindex
 load_glob      none                                    svindex         x
 #ifdef USE_ITHREADS
 regex_padav    *(SV**)&PL_regex_padav                  svindex
index b29549e..636c206 100644 (file)
@@ -1067,7 +1067,7 @@ byterun(pTHX_ register struct byteloader_state *bstate)
            {
                svindex arg;
                BGET_svindex(arg);
-               *(SV**)&PL_incgv = arg;
+               *(SV**)&GvAV(PL_incgv) = arg;
                break;
            }
          case INSN_LOAD_GLOB:          /* 144 */