Index: src/compiler/common-operator.cc |
diff --git a/src/compiler/common-operator.cc b/src/compiler/common-operator.cc |
index e5af14e98207dbbd0acbcb305747a657d7b9af96..ac1f754575ac936f2ae901afe3f3018ad89fb6d0 100644 |
--- a/src/compiler/common-operator.cc |
+++ b/src/compiler/common-operator.cc |
@@ -441,9 +441,7 @@ const Operator* CommonOperatorBuilder::IfValue(int32_t index) { |
} |
-const Operator* CommonOperatorBuilder::Start(int num_formal_parameters) { |
- // Outputs are formal parameters, plus context, receiver, and JSFunction. |
- const int value_output_count = num_formal_parameters + 3; |
+const Operator* CommonOperatorBuilder::Start(int value_output_count) { |
return new (zone()) Operator( // -- |
IrOpcode::kStart, Operator::kFoldable, // opcode |
"Start", // name |