diff options
author | David Mitchell <davem@iabyn.com> | 2015-12-24 23:12:37 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2016-02-03 09:19:17 +0000 |
commit | ef5889910d6925f89c05af2dac7a543a9678fb52 (patch) | |
tree | 18e92a1ec5fd3ae8090a7041732021362667dbd7 /pp_ctl.c | |
parent | cd97dc8d499d664d75b7362093b5f93b8eef282d (diff) | |
download | perl-ef5889910d6925f89c05af2dac7a543a9678fb52.tar.gz |
pp_redo()): reorder some stuff
It probably doesn't make any difference, but reorder the FREETMPS,
CX_LEAVE_SCOPE and TOPBLOCK so it matches the order we do things when
leaving a scope.
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2570,9 +2570,9 @@ PP(pp_redo) redo_op = redo_op->op_next; } - TOPBLOCK(cx); - CX_LEAVE_SCOPE(cx); FREETMPS; + CX_LEAVE_SCOPE(cx); + TOPBLOCK(cx); PL_curcop = cx->blk_oldcop; PERL_ASYNC_CHECK(); return redo_op; |