This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regexec.c: reorder statements for speed
authorKarl Williamson <public@khwilliamson.com>
Sun, 31 Oct 2010 17:50:08 +0000 (11:50 -0600)
committerFather Chrysostomos <sprout@cpan.org>
Sun, 31 Oct 2010 22:59:54 +0000 (15:59 -0700)
commit20ed0b260f81efafa0c8e1cd9413ad026e3f19be
tree8c51eae33be6211df96e496ef9b07ec7014ec9a6
parentaf364d036721fad8cdfe034fea03192968f09774
regexec.c: reorder statements for speed

The call to reginclass is guaranteed by constness to not change
locinput, so if going to fail don't waste time calling it.
regexec.c