diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2004-07-23 09:52:59 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-07-23 09:52:59 +0000 |
commit | f39bc417872f70cd842818eabb72f1c97d78cdd2 (patch) | |
tree | 580290513860e81838a2510e5ea1fa7fc109e826 /thrdvar.h | |
parent | 0dfdcd8a63a82bd61087d84a6f130e03a4b20ed9 (diff) | |
download | perl-f39bc417872f70cd842818eabb72f1c97d78cdd2.tar.gz |
remove the return stack PL_retstack, and store return ops in the CX
structure directly instead
p4raw-id: //depot/perl@23156
Diffstat (limited to 'thrdvar.h')
-rw-r--r-- | thrdvar.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -56,9 +56,9 @@ PERLVAR(Tmarkstack, I32 *) /* stack_sp locations we're remembering */ PERLVAR(Tmarkstack_ptr, I32 *) PERLVAR(Tmarkstack_max, I32 *) -PERLVAR(Tretstack, OP **) /* OPs we have postponed executing */ -PERLVAR(Tretstack_ix, I32) -PERLVAR(Tretstack_max, I32) +PERLVAR(Tretstack, OP **) /* XXX for 5.8.x BINCOMPAT */ +PERLVAR(Tretstack_ix, I32) /* XXX for 5.8.x BINCOMPAT */ +PERLVAR(Tretstack_max, I32) /* XXX for 5.8.x BINCOMPAT */ PERLVAR(TSv, SV *) /* used to hold temporary values */ PERLVAR(TXpv, XPV *) /* used to hold temporary values */ |