summaryrefslogtreecommitdiff
path: root/scope.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 /scope.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 'scope.c')
-rw-r--r--scope.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/scope.c b/scope.c
index 6881923cd0..a39859d7a1 100644
--- a/scope.c
+++ b/scope.c
@@ -1306,6 +1306,7 @@ Perl_cx_dump(pTHX_ PERL_CONTEXT *cx)
PTR2UV(cx->blk_oldcop));
PerlIO_printf(Perl_debug_log, "BLK_OLDMARKSP = %ld\n", (long)cx->blk_oldmarksp);
PerlIO_printf(Perl_debug_log, "BLK_OLDSCOPESP = %ld\n", (long)cx->blk_oldscopesp);
+ PerlIO_printf(Perl_debug_log, "BLK_OLDSAVEIX = %ld\n", (long)cx->blk_oldsaveix);
PerlIO_printf(Perl_debug_log, "BLK_OLDPM = 0x%"UVxf"\n",
PTR2UV(cx->blk_oldpm));
switch (cx->blk_gimme) {