[libc-commits] [libc] [libc] Fix buildbot failure for bigint (PR #207534)

via libc-commits libc-commits at lists.llvm.org
Sat Jul 4 12:09:56 PDT 2026


https://github.com/Sukumarsawant created https://github.com/llvm/llvm-project/pull/207534

tbd

>From b8b82b78512b1385ef84d59157c90e331d341132 Mon Sep 17 00:00:00 2001
From: Sukumarsawant <sawantsukumar at gmail.com>
Date: Sun, 5 Jul 2026 00:38:20 +0530
Subject: [PATCH] address failure

---
 libc/src/__support/frac128.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libc/src/__support/frac128.h b/libc/src/__support/frac128.h
index 037efd46f3837..298d1d9a61d70 100644
--- a/libc/src/__support/frac128.h
+++ b/libc/src/__support/frac128.h
@@ -18,7 +18,7 @@ struct Frac128 : public UInt<128> {
   using UInt<128>::UInt;
 
   LIBC_INLINE constexpr Frac128 operator~() const {
-    Frac128 r;
+    Frac128 r{};
     r.val[0] = ~val[0];
     r.val[1] = ~val[1];
     return r;



More information about the libc-commits mailing list