[libc-commits] [libc] [libc][i386] FPBit support for 96b long double (PR #115084)
Nick Desaulniers via libc-commits
libc-commits at lists.llvm.org
Wed Nov 6 10:45:40 PST 2024
================
@@ -469,7 +469,7 @@ struct BigInt {
!cpp::is_same_v<T, bool>>>
LIBC_INLINE constexpr BigInt(T v) {
constexpr size_t T_SIZE = sizeof(T) * CHAR_BIT;
- const bool is_neg = Signed && (v < 0);
+ const bool is_neg = v < 0;
----------------
nickdesaulniers wrote:
https://github.com/llvm/llvm-project/pull/115084/commits/be223620e9c8466ca88e4b4f3cf06ce92cfe329f
https://github.com/llvm/llvm-project/pull/115084
More information about the libc-commits
mailing list