This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
pp_dbstate: do SAVETMPS etc in both branches
authorDavid Mitchell <davem@iabyn.com>
Sat, 11 Jul 2015 13:04:59 +0000 (14:04 +0100)
committerDavid Mitchell <davem@iabyn.com>
Wed, 3 Feb 2016 08:59:36 +0000 (08:59 +0000)
commit8a44b450ee601df21c3e6059c1b0c72e8232635a
treebd9bba39a5256a1263662447d57b7fd3449642be
parent486430a5ae61ba02ab78cb71719b0fac0c47fb52
pp_dbstate: do SAVETMPS etc in both branches

pp_dbstate() does an XS or non-XS subroutine call to &DB::DB;
move the SAVETMPS from before the (if CvISXSUB(cv)) test to the head of
both branches. This duplication of code is currently a noop, but will
shortly allow us to handle things differently in the two branches.
pp_ctl.c