| Index: src/compiler/linkage.cc
|
| diff --git a/src/compiler/linkage.cc b/src/compiler/linkage.cc
|
| index eaab6aefe40ac8f0c5ddd3fc53e3507bbc26e445..36dcbb78197ea772c8df5bcf1c92b5d8a81c7e7d 100644
|
| --- a/src/compiler/linkage.cc
|
| +++ b/src/compiler/linkage.cc
|
| @@ -242,8 +242,6 @@ int Linkage::FrameStateInputCount(Runtime::FunctionId function) {
|
| return 0;
|
| case Runtime::kInlineArguments:
|
| case Runtime::kInlineArgumentsLength:
|
| - case Runtime::kInlineCall:
|
| - case Runtime::kInlineCallFunction:
|
| case Runtime::kInlineDefaultConstructorCallSuper:
|
| case Runtime::kInlineGetCallerJSFunction:
|
| case Runtime::kInlineGetPrototype:
|
| @@ -259,6 +257,8 @@ int Linkage::FrameStateInputCount(Runtime::FunctionId function) {
|
| case Runtime::kInlineToPrimitive:
|
| case Runtime::kInlineToString:
|
| return 1;
|
| + case Runtime::kInlineCall:
|
| + case Runtime::kInlineCallFunction:
|
| case Runtime::kInlineDeoptimizeNow:
|
| case Runtime::kInlineThrowNotDateError:
|
| return 2;
|
|
|