| 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 d11210bb8b4a998f0504545631a66588e4f7d668..bf79707c5c8d9a023ba6f1cacaf12c6e39529c8d 100644
 | 
| --- a/test/cctest/compiler/test-changes-lowering.cc
 | 
| +++ b/test/cctest/compiler/test-changes-lowering.cc
 | 
| @@ -88,7 +88,7 @@ class ChangesLoweringTester : public GraphBuilderTester<ReturnType> {
 | 
|      Node* change = this->graph()->NewNode(op, p0);
 | 
|      Node* ret = this->graph()->NewNode(this->common()->Return(), change,
 | 
|                                         this->start(), this->start());
 | 
| -    Node* end = this->graph()->NewNode(this->common()->End(), ret);
 | 
| +    Node* end = this->graph()->NewNode(this->common()->End(1), ret);
 | 
|      this->graph()->SetEnd(end);
 | 
|      LowerChange(change);
 | 
|    }
 | 
| @@ -104,7 +104,7 @@ class ChangesLoweringTester : public GraphBuilderTester<ReturnType> {
 | 
|          change, this->start(), this->start());
 | 
|      Node* ret = this->graph()->NewNode(
 | 
|          this->common()->Return(), this->Int32Constant(0), store, this->start());
 | 
| -    Node* end = this->graph()->NewNode(this->common()->End(), ret);
 | 
| +    Node* end = this->graph()->NewNode(this->common()->End(1), ret);
 | 
|      this->graph()->SetEnd(end);
 | 
|      LowerChange(change);
 | 
|    }
 | 
| @@ -119,7 +119,7 @@ class ChangesLoweringTester : public GraphBuilderTester<ReturnType> {
 | 
|      Node* change = this->graph()->NewNode(op, load);
 | 
|      Node* ret = this->graph()->NewNode(this->common()->Return(), change,
 | 
|                                         this->start(), this->start());
 | 
| -    Node* end = this->graph()->NewNode(this->common()->End(), ret);
 | 
| +    Node* end = this->graph()->NewNode(this->common()->End(1), ret);
 | 
|      this->graph()->SetEnd(end);
 | 
|      LowerChange(change);
 | 
|    }
 | 
| 
 |