| Index: src/compiler/graph-builder.cc
|
| diff --git a/src/compiler/graph-builder.cc b/src/compiler/graph-builder.cc
|
| index b50d02875f216fb089f8cbab10406e193555a88a..769e38a94371c8df5fb25d54d52bdd2a26189878 100644
|
| --- a/src/compiler/graph-builder.cc
|
| +++ b/src/compiler/graph-builder.cc
|
| @@ -167,7 +167,7 @@ Node* StructuredGraphBuilder::NewPhi(int count, Node* input, Node* control) {
|
| Node** buffer = local_zone()->NewArray<Node*>(count + 1);
|
| MemsetPointer(buffer, input, count);
|
| buffer[count] = control;
|
| - return graph()->NewNode(phi_op, count + 1, buffer);
|
| + return graph()->NewNode(phi_op, count + 1, buffer, true);
|
| }
|
|
|
|
|
| @@ -178,7 +178,7 @@ Node* StructuredGraphBuilder::NewEffectPhi(int count, Node* input,
|
| Node** buffer = local_zone()->NewArray<Node*>(count + 1);
|
| MemsetPointer(buffer, input, count);
|
| buffer[count] = control;
|
| - return graph()->NewNode(phi_op, count + 1, buffer);
|
| + return graph()->NewNode(phi_op, count + 1, buffer, true);
|
| }
|
|
|
|
|
|
|