This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
op.c: op_clear is tempting fate
authorFather Chrysostomos <sprout@cpan.org>
Thu, 26 Jul 2012 05:19:56 +0000 (22:19 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Thu, 26 Jul 2012 05:20:23 +0000 (22:20 -0700)
commit99a1d0d13934e829126ea4d0e61887470d8138e5
tree860433db61ceb1f4e10a07ffc87178337e8df495
parent06b58b76f31d491371d0ab0c38cec33c1c7ba4ab
op.c: op_clear is tempting fate

This if() statement can be reached by op types to which the OpTRANS*
flags to not apply.  They happen at present not to use any flags that
conflict with these (except when OPf_KIDS is set, in which case this
code is not reached).   But we should make sure, via an assertion,
that new flags added to goto or last do not conflict with trans utf8
flags, and that trans utf8 flags (1 and 2), if renumbered, do not con-
flict with goto/last utf8 flags (128).
op.c