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_sort.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_sort.c')
-rw-r--r-- | pp_sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1691,7 +1691,7 @@ PP(pp_sort) } } - cx->cx_old_savestack_ix = old_savestack_ix; + cx->blk_oldsaveix = old_savestack_ix; start = p1 - max; sortsvp(aTHX_ start, max, |