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

Unified Diff: src/ast.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: REBASE. 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
« no previous file with comments | « src/ast.h ('k') | src/bootstrapper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast.cc
diff --git a/src/ast.cc b/src/ast.cc
index 2acb2f5f365a0922c95e0e542439d11195b8fbc4..722742e16ca7e5475a432cd069134b58239cbe0a 100644
--- a/src/ast.cc
+++ b/src/ast.cc
@@ -65,7 +65,7 @@ VariableProxy::VariableProxy(Zone* zone, Variable* var, int position,
is_this_(var->is_this()),
is_assigned_(false),
is_resolved_(false),
- variable_feedback_slot_(FeedbackVectorSlot::Invalid()),
+ variable_feedback_slot_(FeedbackVectorICSlot::Invalid()),
raw_name_(var->raw_name()),
interface_(var->interface()) {
BindTo(var);
@@ -78,7 +78,7 @@ VariableProxy::VariableProxy(Zone* zone, const AstRawString* name, bool is_this,
is_this_(is_this),
is_assigned_(false),
is_resolved_(false),
- variable_feedback_slot_(FeedbackVectorSlot::Invalid()),
+ variable_feedback_slot_(FeedbackVectorICSlot::Invalid()),
raw_name_(name),
interface_(interface) {}
« no previous file with comments | « src/ast.h ('k') | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698