| Index: src/compiler/raw-machine-assembler.h
|
| diff --git a/src/compiler/raw-machine-assembler.h b/src/compiler/raw-machine-assembler.h
|
| index 095c892dc1bad55970597c683110ca8ee59ace28..04e0fee704e9c7904c2aefc3f44732a67cd32e27 100644
|
| --- a/src/compiler/raw-machine-assembler.h
|
| +++ b/src/compiler/raw-machine-assembler.h
|
| @@ -73,14 +73,12 @@ class RawMachineAssembler : public GraphBuilder,
|
| void Branch(Node* condition, Label* true_val, Label* false_val);
|
| // Call through CallFunctionStub with lazy deopt and frame-state.
|
| Node* CallFunctionStub0(Node* function, Node* receiver, Node* context,
|
| - Node* frame_state, Label* continuation,
|
| - Label* deoptimization, CallFunctionFlags flags);
|
| + Node* frame_state, CallFunctionFlags flags);
|
| // Call to a JS function with zero parameters.
|
| - Node* CallJS0(Node* function, Node* receiver, Label* continuation,
|
| - Label* deoptimization);
|
| + Node* CallJS0(Node* function, Node* receiver, Node* frame_state);
|
| // Call to a runtime function with zero parameters.
|
| Node* CallRuntime1(Runtime::FunctionId function, Node* arg0,
|
| - Label* continuation, Label* deoptimization);
|
| + Node* frame_state);
|
| void Return(Node* value);
|
| void Bind(Label* label);
|
| void Deoptimize(Node* state);
|
|
|