Commit 01230b25 authored by feng@chromium.org's avatar feng@chromium.org

cl.exe complains about missing parens around the boolean expression.

Review URL: http://codereview.chromium.org/10298

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@736 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent cf4747c7
...@@ -3848,7 +3848,7 @@ static inline bool CompareRawStringContents(Vector<Char> a, Vector<Char> b) { ...@@ -3848,7 +3848,7 @@ static inline bool CompareRawStringContents(Vector<Char> a, Vector<Char> b) {
const int kAlignmentMask = sizeof(uint32_t) - 1; // NOLINT const int kAlignmentMask = sizeof(uint32_t) - 1; // NOLINT
uint32_t pa_addr = reinterpret_cast<uint32_t>(pa); uint32_t pa_addr = reinterpret_cast<uint32_t>(pa);
uint32_t pb_addr = reinterpret_cast<uint32_t>(pb); uint32_t pb_addr = reinterpret_cast<uint32_t>(pb);
if ((pa_addr & kAlignmentMask) | (pb_addr & kAlignmentMask) == 0) { if (((pa_addr & kAlignmentMask) | (pb_addr & kAlignmentMask)) == 0) {
#endif #endif
const int kStepSize = sizeof(int) / sizeof(Char); // NOLINT const int kStepSize = sizeof(int) / sizeof(Char); // NOLINT
int endpoint = length - kStepSize; int endpoint = length - kStepSize;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment