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

Unified Diff: src/ic/ic-state.cc

Issue 650073002: vector-based ICs did not update type feedback counts correctly. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ports. Created 6 years, 2 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/ic-state.cc
diff --git a/src/ic/ic-state.cc b/src/ic/ic-state.cc
index 6dcf13d19f1255e395ca9efc9b016eaaed8755d3..3662f4e1cdb8e8df40d8b360c0247d104931a058 100644
--- a/src/ic/ic-state.cc
+++ b/src/ic/ic-state.cc
@@ -11,8 +11,9 @@ namespace v8 {
namespace internal {
void ICUtility::Clear(Isolate* isolate, Address address,
+ TypeFeedbackVector* vector, FeedbackVectorICSlot slot,
ConstantPoolArray* constant_pool) {
- IC::Clear(isolate, address, constant_pool);
+ IC::Clear(isolate, address, vector, slot, constant_pool);
}

Powered by Google App Engine
This is Rietveld 408576698