[libc-commits] [libc] [libc][stdfix] Fix buildbot failure because of a typo. (PR #126291)
Krishna Pandey via libc-commits
libc-commits at lists.llvm.org
Fri Feb 7 11:44:57 PST 2025
================
@@ -188,8 +188,8 @@ countls(T f) {
constexpr int PADDING_LEN = CONTAIN_LEN - FXRep::TOTAL_LEN;
if constexpr (FXRep::SIGN_LEN != 0) {
- if (x < 0)
- x = bit_not(x);
+ if (f < 0)
+ f = bit_not(f);
}
BitType value_bits = FXBits(x)::get_bits();
----------------
krishna2803 wrote:
ah.. sorry about that! fixed in [caa32e6e](https://github.com/llvm/llvm-project/pull/126291/commits/caa32e6e67e9be05a5e4a317e92209df69173bcd)
https://github.com/llvm/llvm-project/pull/126291
More information about the libc-commits
mailing list