Index: test/unittests/compiler/liveness-analyzer-unittest.cc |
diff --git a/test/unittests/compiler/liveness-analyzer-unittest.cc b/test/unittests/compiler/liveness-analyzer-unittest.cc |
index efc823dba6d9f8c8717ca8fa31bb09ef633b383b..f11d6dff182ed840aef46ded57bd43dee6cceba8 100644 |
--- a/test/unittests/compiler/liveness-analyzer-unittest.cc |
+++ b/test/unittests/compiler/liveness-analyzer-unittest.cc |
@@ -27,21 +27,20 @@ class LivenessAnalysisTest : public GraphTest { |
javascript_(zone()), |
jsgraph_(isolate(), graph(), common(), &javascript_, nullptr, |
&machine_), |
- analyzer_(locals_count, zone()), |
+ analyzer_(locals_count, false, zone()), |
empty_values_(graph()->NewNode(common()->StateValues(0), 0, nullptr)), |
next_checkpoint_id_(0), |
current_block_(nullptr) {} |
- |
protected: |
JSGraph* jsgraph() { return &jsgraph_; } |
LivenessAnalyzer* analyzer() { return &analyzer_; } |
void Run() { |
StateValuesCache cache(jsgraph()); |
- NonLiveFrameStateSlotReplacer replacer(&cache, |
- jsgraph()->UndefinedConstant(), |
- analyzer()->local_count(), zone()); |
+ NonLiveFrameStateSlotReplacer replacer( |
+ &cache, jsgraph()->UndefinedConstant(), analyzer()->local_count(), |
+ false, zone()); |
analyzer()->Run(&replacer); |
} |