| 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 f11d6dff182ed840aef46ded57bd43dee6cceba8..f332e6852e6fd249c5742ea35903da4adab7e1b1 100644
|
| --- a/test/unittests/compiler/liveness-analyzer-unittest.cc
|
| +++ b/test/unittests/compiler/liveness-analyzer-unittest.cc
|
| @@ -28,7 +28,8 @@ class LivenessAnalysisTest : public GraphTest {
|
| jsgraph_(isolate(), graph(), common(), &javascript_, nullptr,
|
| &machine_),
|
| analyzer_(locals_count, false, zone()),
|
| - empty_values_(graph()->NewNode(common()->StateValues(0), 0, nullptr)),
|
| + empty_values_(
|
| + graph()->NewNode(common()->StateValues(0, 0u), 0, nullptr)),
|
| next_checkpoint_id_(0),
|
| current_block_(nullptr) {}
|
|
|
| @@ -48,7 +49,7 @@ class LivenessAnalysisTest : public GraphTest {
|
| int ast_num = next_checkpoint_id_++;
|
| int first_const = intconst_from_bailout_id(ast_num, locals_count_);
|
|
|
| - const Operator* locals_op = common()->StateValues(locals_count_);
|
| + const Operator* locals_op = common()->StateValues(locals_count_, 0u);
|
|
|
| ZoneVector<Node*> local_inputs(locals_count_, nullptr, zone());
|
| for (int i = 0; i < locals_count_; i++) {
|
|
|