This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Strength reduction optimisation seems to spot that a = a + 1; is just
authorNicholas Clark <nick@ccl4.org>
Mon, 9 Jun 2008 18:43:59 +0000 (18:43 +0000)
committerNicholas Clark <nick@ccl4.org>
Mon, 9 Jun 2008 18:43:59 +0000 (18:43 +0000)
commit3a92e6ae8711ddb5b5574745041a3e03a98b1f1c
treeb3276c489537995031a670e8d1af4bdaab6582d2
parent3ec35e0f92217816d70cf483b3b012476ca9b9d7
Strength reduction optimisation seems to spot that a = a + 1; is just
a++; so write it as the former, to keep PERL_DEBUG_COW happy.

p4raw-id: //depot/perl@34039
regcomp.c