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

Unified Diff: runtime/vm/intrinsifier.cc

Issue 11412137: Reenable function source fingerprint checks. Added checks to MethodRecognizer. (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
Index: runtime/vm/intrinsifier.cc
===================================================================
--- runtime/vm/intrinsifier.cc (revision 15218)
+++ 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 true;
- } */
+ return false;
+ }
return true;
}

Powered by Google App Engine
This is Rietveld 408576698