Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: a8abfc692a3a7b7910a113eb2baeed9015cfa2cf
https://github.com/Perl/perl5/commit/a8abfc692a3a7b7910a113eb2baeed9015cfa2cf
Author: TAKAI Kousuke <[email protected]>
Date: 2022-03-04 (Fri, 04 Mar 2022)
Changed paths:
M sv.c
Log Message:
-----------
sv.c: reuse NV-to-IV/UV conversion code for SV-to-NV-to-IV/UV conversion
S_sv_2iuv_common() had two NV to IV/UV conversion code, one is used when
input is NOKp, another is used when converting a string to IV/UV via NV
(as long as NV_PRESERVES_UV is defined). These two conversions should be
identical, so sharing one code will be clearer and make code a bit compact.
Commit: 0b247afb376f3999887b297797ac52730fad1d03
https://github.com/Perl/perl5/commit/0b247afb376f3999887b297797ac52730fad1d03
Author: TAKAI Kousuke <[email protected]>
Date: 2022-03-04 (Fri, 04 Mar 2022)
Changed paths:
M MANIFEST
A t/op/numify_chkflags.t
Log Message:
-----------
Add tests to see if string-to-number conversion behaves correctly
I added these tests primarily to verify that my previous commit did
not introduce any behavioral change; these tests should not fail
even before that commit.
Compare: https://github.com/Perl/perl5/compare/8131b14be4bd...0b247afb376f