summaryrefslogtreecommitdiff
path: root/pp_hot.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2015-10-17 14:52:50 +0100
committerDavid Mitchell <davem@iabyn.com>2016-02-03 09:18:30 +0000
commite992140c0e6f8ddfe08a88cc28a1d24149061d74 (patch)
tree570ad5fbb4af50c5fe6e1c3bb8db1f7646d80612 /pp_hot.c
parent9d1ee8e070881fd97d9311709893d0980afe43c9 (diff)
downloadperl-e992140c0e6f8ddfe08a88cc28a1d24149061d74.tar.gz
move and rename cx_old_savestack_ix
Earlier on in this branch I temporarily added cx_old_savestack_ix as the first element in the context struct. This commit moves it down 32 bits so it now follows type/gimme/u16 in the sbu and blku unions. This means that type is now back as the first item in the struct. I've also renamed it blku_oldsaveix to be more in keeping with similar field names.
Diffstat (limited to 'pp_hot.c')
-rw-r--r--pp_hot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_hot.c b/pp_hot.c
index 8d00f7a203..5f0ef998d5 100644
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -3569,7 +3569,7 @@ PP(pp_entersub)
hasargs = cBOOL(PL_op->op_flags & OPf_STACKED);
PUSHSUB(cx);
cx->blk_sub.retop = PL_op->op_next;
- cx->cx_old_savestack_ix = old_savestack_ix;
+ cx->blk_oldsaveix = old_savestack_ix;
padlist = CvPADLIST(cv);
if (UNLIKELY((depth = ++CvDEPTH(cv)) >= 2)) {