| Index: src/compiler/js-inlining.cc
|
| diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc
|
| index bab3308cb86deb9c74a28d89bafce93b8a2f350e..af18cd6c8a4295363f80eb6ea2fdd212f2eca4ed 100644
|
| --- a/src/compiler/js-inlining.cc
|
| +++ b/src/compiler/js-inlining.cc
|
| @@ -176,8 +176,8 @@ class CopyVisitor : public NullNodeVisitor {
|
| source_graph_(source_graph),
|
| target_graph_(target_graph),
|
| temp_zone_(temp_zone),
|
| - sentinel_op_(IrOpcode::kDead, Operator::kNoProperties, 0, 0,
|
| - "sentinel") {}
|
| + sentinel_op_(IrOpcode::kDead, Operator::kNoProperties, "sentinel", 0, 0,
|
| + 0, 0, 0, 0) {}
|
|
|
| GenericGraphVisit::Control Post(Node* original) {
|
| NodeVector inputs(temp_zone_);
|
| @@ -235,7 +235,7 @@ class CopyVisitor : public NullNodeVisitor {
|
| Graph* source_graph_;
|
| Graph* target_graph_;
|
| Zone* temp_zone_;
|
| - SimpleOperator sentinel_op_;
|
| + Operator sentinel_op_;
|
| };
|
|
|
|
|
|
|