[llvm-commits] [PATCH] Add parentheses to avoid warnings in GCC 4.4.0
Samuel Tardieu
sam at rfc1149.net
Tue Oct 7 08:30:48 PDT 2008
---
lib/Transforms/Scalar/InstructionCombining.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp
index 6f9893c..8cb5e4f 100644
--- a/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -3939,7 +3939,7 @@ static bool CollectBSwapParts(Value *V, int OverallLeftShift, uint32_t ByteMask,
// X >>u 2 -> collect(X, -2)
OverallLeftShift -= ByteShift;
ByteMask <<= ByteShift;
- ByteMask &= (~0U >> 32-ByteValues.size());
+ ByteMask &= (~0U >> (32-ByteValues.size()));
}
if (OverallLeftShift >= (int)ByteValues.size()) return true;
More information about the llvm-commits
mailing list