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

Unified Diff: src/ic.cc

Issue 358363002: Move platform abstraction to base library (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 6 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
Index: src/ic.cc
diff --git a/src/ic.cc b/src/ic.cc
index b4ef2b839275fd807c1d919bb9c2efc27941bcf1..5a4135b02af94f58731828c27c4db995da653c54 100644
--- a/src/ic.cc
+++ b/src/ic.cc
@@ -448,7 +448,7 @@ void IC::InvalidateMaps(Code* stub) {
it.rinfo()->set_target_object(undefined, SKIP_WRITE_BARRIER);
}
}
- CPU::FlushICache(stub->instruction_start(), stub->instruction_size());
+ CpuFeatures::FlushICache(stub->instruction_start(), stub->instruction_size());
}

Powered by Google App Engine
This is Rietveld 408576698