summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bytecode.pl2
-rw-r--r--ext/ByteLoader/byterun.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/bytecode.pl b/bytecode.pl
index e3759613e2..1bcf95a6f6 100644
--- a/bytecode.pl
+++ b/bytecode.pl
@@ -479,7 +479,7 @@ push_end PL_endav svindex x
curstash *(SV**)&PL_curstash svindex
defstash *(SV**)&PL_defstash svindex
data none U8 x
-incav *(SV**)&GvAVn(PL_incgv) svindex
+incav *(SV**)&PL_incgv svindex
load_glob none svindex x
#ifdef USE_ITHREADS
regex_padav *(SV**)&PL_regex_padav svindex
diff --git a/ext/ByteLoader/byterun.c b/ext/ByteLoader/byterun.c
index f2f367ed36..d820ef8ec2 100644
--- a/ext/ByteLoader/byterun.c
+++ b/ext/ByteLoader/byterun.c
@@ -1031,7 +1031,7 @@ byterun(pTHX_ register struct byteloader_state *bstate)
{
svindex arg;
BGET_svindex(arg);
- *(SV**)&GvAVn(PL_incgv) = arg;
+ *(SV**)&PL_incgv = arg;
break;
}
case INSN_LOAD_GLOB: /* 139 */