Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Unified Diff: src/hydrogen-instructions.cc

Issue 15934019: Fix win build (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-instructions.cc
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
index c76879a75f9a0298ceaffaf271fc15bed3c28560..5fae5f72237cc824f27bae036f158a0df0ebed92 100644
--- a/src/hydrogen-instructions.cc
+++ b/src/hydrogen-instructions.cc
@@ -2341,7 +2341,8 @@ Range* HBitwise::InferRange(Zone* zone) {
if (right_lower < 0) right_lower = ~right_lower;
int high = MostSignificantBit(
- left_upper | left_lower | right_upper | right_lower);
+ static_cast<uint32_t>(
+ left_upper | left_lower | right_upper | right_lower));
int64_t limit = 1;
limit <<= high;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698