summaryrefslogtreecommitdiff
path: root/thrdvar.h
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2004-07-23 09:52:59 +0000
committerDave Mitchell <davem@fdisolutions.com>2004-07-23 09:52:59 +0000
commitf39bc417872f70cd842818eabb72f1c97d78cdd2 (patch)
tree580290513860e81838a2510e5ea1fa7fc109e826 /thrdvar.h
parent0dfdcd8a63a82bd61087d84a6f130e03a4b20ed9 (diff)
downloadperl-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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/thrdvar.h b/thrdvar.h
index da80ab4622..ede3cc1858 100644
--- a/thrdvar.h
+++ b/thrdvar.h
@@ -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 */