projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a4b19e
)
Fix issue with bitwise and precedence.
author
Ahmed Charles
<ace2001ac@gmail.com>
Sat, 18 Feb 2012 22:56:41 +0000
(22:56 +0000)
committer
Ahmed Charles
<ace2001ac@gmail.com>
Sat, 18 Feb 2012 22:56:41 +0000
(22:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150897
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Support/Hashing.cpp
patch
|
blob
|
history
diff --git
a/lib/Support/Hashing.cpp
b/lib/Support/Hashing.cpp
index 89b84530afad150c4d2dcaae7caa0f5bb7258913..21fcdd7e7f88fb877b1a888a3c3f5f2352597160 100644
(file)
--- 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<const uint32_t *>(I));
I += 4;