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

Unified Diff: src/heap/heap.cc

Issue 1376443002: Refactored interface of FeedbackVectorSpec and friends. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Created 5 years, 3 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/factory.cc ('k') | src/type-feedback-vector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/heap.cc
diff --git a/src/heap/heap.cc b/src/heap/heap.cc
index 940be6574fce6f353af43f607ecf719f9d8f61d0..c6d2e98b463b27f0e085dab911a074c1e5a24bd1 100644
--- a/src/heap/heap.cc
+++ b/src/heap/heap.cc
@@ -2700,7 +2700,7 @@ void Heap::CreateInitialObjects() {
FeedbackVectorSlotKind::KEYED_LOAD_IC,
FeedbackVectorSlotKind::STORE_IC,
FeedbackVectorSlotKind::KEYED_STORE_IC};
- FeedbackVectorSpec spec(0, 4, kinds);
+ StaticFeedbackVectorSpec spec(0, 4, kinds);
Handle<TypeFeedbackVector> dummy_vector =
factory->NewTypeFeedbackVector(&spec);
for (int i = 0; i < 4; i++) {
« no previous file with comments | « src/factory.cc ('k') | src/type-feedback-vector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698