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

Unified Diff: runtime/vm/object.cc

Issue 11308146: Fix build on Linux. Disable fingerprint checking as the finger prints changed. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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 | « runtime/vm/intrinsifier.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
===================================================================
--- runtime/vm/object.cc (revision 15217)
+++ runtime/vm/object.cc (working copy)
@@ -4215,7 +4215,7 @@
result = 31 * result + val;
tokens_iterator.Advance();
}
- result = result & ((static_cast<intptr_t>(1) << 31) - 1);
+ result = result & ((static_cast<intptr_t>(1) << 30) - 1);
ASSERT(result <= static_cast<uint32_t>(kMaxInt32));
return result;
}
« no previous file with comments | « runtime/vm/intrinsifier.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698