Index: src/compiler/js-type-feedback.h |
diff --git a/src/compiler/js-type-feedback.h b/src/compiler/js-type-feedback.h |
index 3d557950a5ac0ce6702a36165fb344ff220215cb..4f1f045d6d3397daf01ae82a9e5158133464400d 100644 |
--- a/src/compiler/js-type-feedback.h |
+++ b/src/compiler/js-type-feedback.h |
@@ -47,14 +47,15 @@ class JSTypeFeedbackTable : public ZoneObject { |
// Specializes a graph to the type feedback recorded in the |
// {js_type_feedback} provided to the constructor. |
-class JSTypeFeedbackSpecializer : public Reducer { |
+class JSTypeFeedbackSpecializer : public AdvancedReducer { |
public: |
- JSTypeFeedbackSpecializer(JSGraph* jsgraph, |
+ JSTypeFeedbackSpecializer(Editor* editor, JSGraph* jsgraph, |
JSTypeFeedbackTable* js_type_feedback, |
TypeFeedbackOracle* oracle, |
Handle<GlobalObject> global_object, |
CompilationDependencies* dependencies) |
- : jsgraph_(jsgraph), |
+ : AdvancedReducer(editor), |
+ jsgraph_(jsgraph), |
simplified_(jsgraph->graph()->zone()), |
js_type_feedback_(js_type_feedback), |
oracle_(oracle), |