Index: src/compiler/js-inlining.cc |
diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc |
index 58d490449fd77971a0e81623d89e2460b3a50e15..9874075b0a9d2ea073d86bfd36e21eff4843ab9f 100644 |
--- a/src/compiler/js-inlining.cc |
+++ b/src/compiler/js-inlining.cc |
@@ -165,8 +165,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_); |
@@ -224,7 +224,7 @@ class CopyVisitor : public NullNodeVisitor { |
Graph* source_graph_; |
Graph* target_graph_; |
Zone* temp_zone_; |
- SimpleOperator sentinel_op_; |
+ Operator sentinel_op_; |
}; |