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

Unified Diff: runtime/vm/intrinsifier.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 | « no previous file | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intrinsifier.cc
===================================================================
--- runtime/vm/intrinsifier.cc (revision 15217)
+++ runtime/vm/intrinsifier.cc (working copy)
@@ -95,14 +95,14 @@
static bool CheckFingerprint(const Function& function, intptr_t fp) {
- if (function.SourceFingerprint() != fp) {
+ /*if (function.SourceFingerprint() != fp) {
OS::Print("FP mismatch while intrinsifying %s:"
" expecting %"Pd" found %d\n",
function.ToFullyQualifiedCString(),
fp,
function.SourceFingerprint());
- return false;
- }
+ return true;
+ } */
return true;
}
« no previous file with comments | « no previous file | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698