Index: src/compiler/js-inlining-heuristic.h |
diff --git a/src/compiler/js-inlining-heuristic.h b/src/compiler/js-inlining-heuristic.h |
index aa7ab811f53d16516d097d3bfbcc444550a01b1c..a4a0ec3b75855a1c197cf27771b943f0800eadb6 100644 |
--- a/src/compiler/js-inlining-heuristic.h |
+++ b/src/compiler/js-inlining-heuristic.h |
@@ -21,7 +21,8 @@ class JSInliningHeuristic final : public AdvancedReducer { |
local_zone_(local_zone), |
jsgraph_(jsgraph), |
inliner_(editor, local_zone, info, jsgraph), |
- candidates_(local_zone) {} |
+ candidates_(local_zone), |
+ info_(info) {} |
Reduction Reduce(Node* node) final; |
@@ -44,6 +45,7 @@ class JSInliningHeuristic final : public AdvancedReducer { |
JSGraph* jsgraph_; |
JSInliner inliner_; |
ZoneVector<Candidate> candidates_; |
+ CompilationInfo* info_; |
}; |
} // namespace compiler |