[libc-commits] [libc] [libc][stdfix] Implement fixed point bitsfx functions in llvm libc (PR #128413)

Krishna Pandey via libc-commits libc-commits at lists.llvm.org
Tue Feb 25 00:11:12 PST 2025


================
@@ -121,7 +121,7 @@ bit_and(T x, T y) {
   using BitType = typename FXRep<T>::StorageType;
   BitType x_bit = cpp::bit_cast<BitType>(x);
   BitType y_bit = cpp::bit_cast<BitType>(y);
-  // For some reason, bit_cast cannot deduce BitType from the input.
+  // For some reason, bit_cast cannot deduce BitType T the input.
----------------
krishna2803 wrote:

oh sorry, that's an artifact of me doing a find and replace of a silly variable name that i overlooked

https://github.com/llvm/llvm-project/pull/128413


More information about the libc-commits mailing list