From e5a129bc5da526341b640c55f5e7bcc9ea000264 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sun, 29 May 2005 17:46:39 +0000 Subject: Change the IV to a union. Revert the NV union back to a plain NV Transpose the positions of IV and NV (NV is now first) Don't allocate the NV for PV,PVIV,PVAV and PVHV (last 2 non-allocations currently disabled by default) p4raw-id: //depot/perl@24617 --- intrpvar.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intrpvar.h') diff --git a/intrpvar.h b/intrpvar.h index ae4850c27e..85a8a2111a 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -251,7 +251,7 @@ PERLVAR(Isighandlerp, Sighandler_t) PERLVAR(Ixnv_root, NV *) /* free xnv list */ PERLVAR(Ixpv_root, xpv_allocated *) /* free xpv list */ -PERLVAR(Ixpviv_root, XPVIV *) /* free xpviv list */ +PERLVAR(Ixpviv_root, xpviv_allocated *) /* free xpviv list */ PERLVAR(Ixpvnv_root, XPVNV *) /* free xpvnv list */ PERLVAR(Ixpvcv_root, XPVCV *) /* free xpvcv list */ PERLVAR(Ixpvav_root, xpvav_allocated *) /* free xpvav list */ @@ -431,7 +431,7 @@ PERLVARI(Ibeginav_save, AV*, Nullav) /* save BEGIN{}s when compiling */ PERLVAR(Ixnv_arenaroot, XPV*) /* list of allocated xnv areas */ PERLVAR(Ixpv_arenaroot, xpv_allocated *) /* list of allocated xpv areas */ -PERLVAR(Ixpviv_arenaroot,XPVIV*) /* list of allocated xpviv areas */ +PERLVAR(Ixpviv_arenaroot,xpviv_allocated*) /* list of allocated xpviv areas */ PERLVAR(Ixpvnv_arenaroot,XPVNV*) /* list of allocated xpvnv areas */ PERLVAR(Ixpvcv_arenaroot,XPVCV*) /* list of allocated xpvcv areas */ PERLVAR(Ixpvav_arenaroot,xpvav_allocated*) /* list of allocated xpvav areas */ -- cgit v1.2.1