This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
make the expensive ckWARN() be called as late as possible
authorDave Mitchell <davem@fdisolutions.com>
Wed, 13 Jul 2005 00:21:13 +0000 (00:21 +0000)
committerDave Mitchell <davem@fdisolutions.com>
Wed, 13 Jul 2005 00:21:13 +0000 (00:21 +0000)
commit041457d90dbb6fb79a72c7a8462f01423f2daa09
tree5393e1e2a48eb57f050aa85b76a30b7f9f198257
parente352bcff231c07cf21f07ae801f374a3da3229ed
make the expensive ckWARN() be called as late as possible
reorganise
    if (ckWARN(FOO) && should_not_happen_condition)
to
    if (should_not_happen_condition && ckWARN(FOO))

p4raw-id: //depot/perl@25129
13 files changed:
doio.c
gv.c
op.c
pad.c
perlio.c
pp.c
pp_hot.c
pp_pack.c
pp_sys.c
regcomp.c
regexec.c
sv.c
toke.c