summaryrefslogtreecommitdiff
path: root/byterun.c
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-05-03 20:20:59 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-05-03 20:20:59 +0000
commitf64a6365a4321eb92de65e5c2074b53cd29e0ca6 (patch)
tree8e888ab52cd143fdbd0c5db85c30796b71d8d1f2 /byterun.c
parent79ee829736f0059fc3a1c40f89ec42de04dad28e (diff)
downloadperl-f64a6365a4321eb92de65e5c2074b53cd29e0ca6.tar.gz
Development to pre-alpha4
p4raw-id: //depot/perlext/Compiler@11
Diffstat (limited to 'byterun.c')
-rw-r--r--byterun.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/byterun.c b/byterun.c
index 1ff323915b..7eb981e4bd 100644
--- a/byterun.c
+++ b/byterun.c
@@ -271,7 +271,7 @@ FILE *fp;
{
svindex arg;
BGET_objindex(arg);
- IoTOP_GV(sv) = arg;
+ *(SV**)&IoTOP_GV(sv) = arg;
break;
}
case INSN_XIO_FMT_NAME: /* 37 */
@@ -285,7 +285,7 @@ FILE *fp;
{
svindex arg;
BGET_objindex(arg);
- IoFMT_GV(sv) = arg;
+ *(SV**)&IoFMT_GV(sv) = arg;
break;
}
case INSN_XIO_BOTTOM_NAME: /* 39 */
@@ -299,7 +299,7 @@ FILE *fp;
{
svindex arg;
BGET_objindex(arg);
- IoBOTTOM_GV(sv) = arg;
+ *(SV**)&IoBOTTOM_GV(sv) = arg;
break;
}
case INSN_XIO_SUBPROCESS: /* 41 */
@@ -348,14 +348,14 @@ FILE *fp;
{
svindex arg;
BGET_objindex(arg);
- CvGV(sv) = arg;
+ *(SV**)&CvGV(sv) = arg;
break;
}
case INSN_XCV_FILEGV: /* 48 */
{
svindex arg;
BGET_objindex(arg);
- CvFILEGV(sv) = arg;
+ *(SV**)&CvFILEGV(sv) = arg;
break;
}
case INSN_XCV_DEPTH: /* 49 */
@@ -761,7 +761,7 @@ FILE *fp;
{
svindex arg;
BGET_objindex(arg);
- cGVOP->op_gv = arg;
+ *(SV**)&cGVOP->op_gv = arg;
break;
}
case INSN_OP_PV: /* 107 */
@@ -817,7 +817,7 @@ FILE *fp;
{
svindex arg;
BGET_objindex(arg);
- cCOP->cop_filegv = arg;
+ *(SV**)&cCOP->cop_filegv = arg;
break;
}
case INSN_COP_SEQ: /* 115 */