| Index: src/compiler/node-properties.h
|
| diff --git a/src/compiler/node-properties.h b/src/compiler/node-properties.h
|
| index fbc06fcc42876515a06bf74e2b6389aa95b653ef..9812158c4eb93b60ea65272080f6da1f3943c822 100644
|
| --- a/src/compiler/node-properties.h
|
| +++ b/src/compiler/node-properties.h
|
| @@ -41,7 +41,7 @@ class NodeProperties final {
|
|
|
| static Node* GetValueInput(Node* node, int index);
|
| static Node* GetContextInput(Node* node);
|
| - static Node* GetFrameStateInput(Node* node, int index);
|
| + static Node* GetFrameStateInput(Node* node);
|
| static Node* GetEffectInput(Node* node, int index = 0);
|
| static Node* GetControlInput(Node* node, int index = 0);
|
|
|
| @@ -83,7 +83,7 @@ class NodeProperties final {
|
| static void ReplaceContextInput(Node* node, Node* context);
|
| static void ReplaceControlInput(Node* node, Node* control, int index = 0);
|
| static void ReplaceEffectInput(Node* node, Node* effect, int index = 0);
|
| - static void ReplaceFrameStateInput(Node* node, int index, Node* frame_state);
|
| + static void ReplaceFrameStateInput(Node* node, Node* frame_state);
|
| static void RemoveNonValueInputs(Node* node);
|
| static void RemoveValueInputs(Node* node);
|
|
|
|
|