[libc-commits] [PATCH] D120914: [libc] Initial support for darwin-aarch64.

Tue Ly via Phabricator via libc-commits libc-commits at lists.llvm.org
Tue Mar 8 15:15:08 PST 2022


lntue marked an inline comment as done.
lntue added inline comments.


================
Comment at: libc/test/src/stdlib/strtold_test.cpp:178
            (__uint128_t(0x7ffe800000) << 40),
-           (__uint128_t(0x7ffe000000000000) << 64));
+           (__uint128_t(0x7ffe000000000000) << 64), ERANGE);
   run_test("0x123456789abcdef", 17, 0x43723456789abcdf,
----------------
sivachandra wrote:
> Why are the changes in this file required?
These are corresponding outputs and errno's if the output type is double precision.  I guess we just haven't tested these when long double is double yet.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D120914/new/

https://reviews.llvm.org/D120914



More information about the libc-commits mailing list