diff --git a/lib/Support/Hashing.cpp b/lib/Support/Hashing.cpp index 89b84530afa..21fcdd7e7f8 100644 --- a/lib/Support/Hashing.cpp +++ b/lib/Support/Hashing.cpp @@ -14,7 +14,7 @@ namespace llvm { // Add a possibly unaligned sequence of bytes. void GeneralHash::addUnaligned(const uint8_t *I, const uint8_t *E) { ptrdiff_t Length = E - I; - if (uintptr_t(I) & 3 == 0) { + if ((uintptr_t(I) & 3) == 0) { while (Length > 3) { mix(*reinterpret_cast(I)); I += 4;