Chromium Code Reviews

Unified Diff: test/unittests/compiler/js-create-lowering-unittest.cc

Issue 2655853010: [TypeFeedbackVector] Combine the literals array and the feedback vector. (Closed)
Patch Set: gyp file Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: test/unittests/compiler/js-create-lowering-unittest.cc
diff --git a/test/unittests/compiler/js-create-lowering-unittest.cc b/test/unittests/compiler/js-create-lowering-unittest.cc
index 56516c9ed0a3dcc7fcd546aa02ec9e1544f26570..a7bb493785291565c01ef11a5ea87b72685bd6c8 100644
--- a/test/unittests/compiler/js-create-lowering-unittest.cc
+++ b/test/unittests/compiler/js-create-lowering-unittest.cc
@@ -41,8 +41,8 @@ class JSCreateLoweringTest : public TypedGraphTest {
// TODO(titzer): mock the GraphReducer here for better unit testing.
GraphReducer graph_reducer(zone(), graph());
JSCreateLowering reducer(&graph_reducer, &deps_, &jsgraph,
- MaybeHandle<LiteralsArray>(), native_context(),
- zone());
+ MaybeHandle<TypeFeedbackVector>(),
+ native_context(), zone());
return reducer.Reduce(node);
}

Powered by Google App Engine