diff options
author | David Mitchell <davem@iabyn.com> | 2015-10-17 14:52:50 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-02-03 09:18:30 +0000 |
commit | e992140c0e6f8ddfe08a88cc28a1d24149061d74 (patch) | |
tree | 570ad5fbb4af50c5fe6e1c3bb8db1f7646d80612 /pp_hot.c | |
parent | 9d1ee8e070881fd97d9311709893d0980afe43c9 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) { |