On Tue, 25 Jun 2024 14:47:45 GMT, Raffaello Giulietti <rgiulie...@openjdk.org> 
wrote:

>> Shaojin Wen has updated the pull request incrementally with one additional 
>> commit since the last revision:
>> 
>>   Utf16 case remove `append first utf16 char`
>
> src/java.base/share/classes/jdk/internal/math/DoubleToDecimal.java line 236:
> 
>> 234:                     dk = -1;
>> 235:                 }
>> 236:                 return toDecimal(str, index, Q_MIN, t, dk, fd) - start;
> 
> I suggest restoring the original logic like so:
> 
>                 /* subnormal value */
>                 return (t < C_TINY
>                         ? toDecimal(str, index, Q_MIN, 10 * t, -1, fd)
>                         : toDecimal(str, index, Q_MIN, t, 0, fd)) - start;

I like the new implementation, the code is cleaner, is your suggestion to 
revert to the original version due to smaller changes?

-------------

PR Review Comment: https://git.openjdk.org/jdk/pull/19730#discussion_r1653210427

Reply via email to