[llvm] [libc] [libc][NFC] Remove __support/bit.h and use __support/CPP/bit.h instead (PR #73939)

Guillaume Chatelet via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 30 06:01:46 PST 2023


================
@@ -152,9 +152,9 @@ class HashState {
     }
   }
   LIBC_INLINE uint64_t finish() {
-    uint64_t rot = buffer & 63;
+    int rot = buffer & 63;
----------------
gchatelet wrote:

FYI @SchrodingerZhu I had to change the type here to suppress a warning about loss of precision.

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


More information about the llvm-commits mailing list