This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Perl_sv_vcatpvfn_flags: move UTF8f handling code
authorDavid Mitchell <davem@iabyn.com>
Thu, 25 May 2017 09:29:04 +0000 (10:29 +0100)
committerDavid Mitchell <davem@iabyn.com>
Wed, 7 Jun 2017 08:11:03 +0000 (09:11 +0100)
commit078395f0d601e3495305273a86e4384104043f1f
tree22b93fb76e557d29bc8bb3cf0ece8363cae0fd11
parentce205b2f51e0f71cbebe24537dfdadc110bd143a
Perl_sv_vcatpvfn_flags: move UTF8f handling code

The special UTF8f format (which is usually defined as something like
"%d%lu%4p") is currently handled as a special case at the top of the main
format-element loop.

Instead move it into the "case "'d'" branch so that it doesn't slow down
everything.
sv.c