diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-23 09:22:35 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-23 09:22:35 +0000 |
commit | 6d68c1c71dbf0816de38854194b295210d986cdb (patch) | |
tree | 381bcf4823cddeecbb74a4db56cf4a9ba91cef99 /intrpvar.h | |
parent | d1fedbfcf1477fb9db5cef6070dcaf18afd8122b (diff) | |
download | perl-6d68c1c71dbf0816de38854194b295210d986cdb.tar.gz |
We don't need IV and RV arena variables anymore. We don't need to set
SvIVX or SvNVX on hashes.
p4raw-id: //depot/perl@24547
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/intrpvar.h b/intrpvar.h index 7e243ddc58..cb8231cb38 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -249,10 +249,7 @@ PERLVARI(Ish_path_compat, const char *, SH_PATH)/* full path of shell */ PERLVAR(Isighandlerp, Sighandler_t) -PERLVAR(Ixiv_arenaroot, XPV*) /* list of allocated xiv areas */ -PERLVAR(Ixiv_root, IV *) /* free xiv list */ PERLVAR(Ixnv_root, NV *) /* free xnv list */ -PERLVAR(Ixrv_root, XRV *) /* free xrv list */ PERLVAR(Ixpv_root, xpv_allocated *) /* free xpv list */ PERLVAR(Ixpviv_root, XPVIV *) /* free xpviv list */ PERLVAR(Ixpvnv_root, XPVNV *) /* free xpvnv list */ @@ -432,7 +429,6 @@ PERLVAR(Iptr_table, PTR_TBL_t*) PERLVARI(Ibeginav_save, AV*, Nullav) /* save BEGIN{}s when compiling */ PERLVAR(Ixnv_arenaroot, XPV*) /* list of allocated xnv areas */ -PERLVAR(Ixrv_arenaroot, XPV*) /* list of allocated xrv areas */ PERLVAR(Ixpv_arenaroot, xpv_allocated *) /* list of allocated xpv areas */ PERLVAR(Ixpviv_arenaroot,XPVIV*) /* list of allocated xpviv areas */ PERLVAR(Ixpvnv_arenaroot,XPVNV*) /* list of allocated xpvnv areas */ |