Index: test/cctest/compiler/test-changes-lowering.cc |
diff --git a/test/cctest/compiler/test-changes-lowering.cc b/test/cctest/compiler/test-changes-lowering.cc |
index 3eec14a91ead068c5adb7521a9be91a0b8b0736f..40849361c17b1137c549ad218529dec4eb8f0df9 100644 |
--- a/test/cctest/compiler/test-changes-lowering.cc |
+++ b/test/cctest/compiler/test-changes-lowering.cc |
@@ -108,7 +108,7 @@ class ChangesLoweringTester : public GraphBuilderTester<ReturnType> { |
this->start(), this->start()); |
Node* end = this->graph()->NewNode(this->common()->End(), ret); |
this->graph()->SetEnd(end); |
- this->lowering.Lower(change); |
+ this->lowering.LowerChange(change, this->start(), this->start()); |
Verifier::Run(this->graph()); |
} |
@@ -124,7 +124,7 @@ class ChangesLoweringTester : public GraphBuilderTester<ReturnType> { |
this->common()->Return(), this->Int32Constant(0), store, this->start()); |
Node* end = this->graph()->NewNode(this->common()->End(), ret); |
this->graph()->SetEnd(end); |
- this->lowering.Lower(change); |
+ this->lowering.LowerChange(change, this->start(), this->start()); |
Verifier::Run(this->graph()); |
} |
@@ -139,7 +139,7 @@ class ChangesLoweringTester : public GraphBuilderTester<ReturnType> { |
this->start(), this->start()); |
Node* end = this->graph()->NewNode(this->common()->End(), ret); |
this->graph()->SetEnd(end); |
- this->lowering.Lower(change); |
+ this->lowering.LowerChange(change, this->start(), this->start()); |
Verifier::Run(this->graph()); |
} |