[libcxx-commits] [PATCH] D59178: [libc++] Speedup to_string and to_wstring for integers using stack buffer and SSO
Marshall Clow via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jun 6 15:13:46 PDT 2019
mclow.lists added a comment.
In D59178#1532032 <https://reviews.llvm.org/D59178#1532032>, @vlad.tsyrklevich wrote:
> I tested the following change and verified that it works for the numeric example above, but don't have time to write a test and monitor for build failures so I'm going to revert this change for now. Leaving it here for whoever wants to pick it up:
Assuming that I have applied Vlad's patch correctly, I find that it doesn't work.
`to_chars(buf, buf + 100, (int64_t)0x10000000000)` gives a result of `199511627776` instead of `1099511627776`
(note the missing zero)
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D59178/new/
https://reviews.llvm.org/D59178
More information about the libcxx-commits
mailing list