| Index: src/compiler/instruction-selector.h
|
| diff --git a/src/compiler/instruction-selector.h b/src/compiler/instruction-selector.h
|
| index b7753ce7b7ed24a6952b36511b25c87d3d8d8f8f..dab2c0f70a40506975e7bb934441ea1ff757469f 100644
|
| --- a/src/compiler/instruction-selector.h
|
| +++ b/src/compiler/instruction-selector.h
|
| @@ -114,14 +114,15 @@ class V8_EXPORT_PRIVATE InstructionSelector final {
|
| // ===========================================================================
|
|
|
| Instruction* EmitDeoptimize(InstructionCode opcode, InstructionOperand output,
|
| - InstructionOperand a, DeoptimizeReason reason,
|
| - Node* frame_state);
|
| + InstructionOperand a, DeoptimizeKind kind,
|
| + DeoptimizeReason reason, Node* frame_state);
|
| Instruction* EmitDeoptimize(InstructionCode opcode, InstructionOperand output,
|
| InstructionOperand a, InstructionOperand b,
|
| - DeoptimizeReason reason, Node* frame_state);
|
| + DeoptimizeKind kind, DeoptimizeReason reason,
|
| + Node* frame_state);
|
| Instruction* EmitDeoptimize(InstructionCode opcode, size_t output_count,
|
| InstructionOperand* outputs, size_t input_count,
|
| - InstructionOperand* inputs,
|
| + InstructionOperand* inputs, DeoptimizeKind kind,
|
| DeoptimizeReason reason, Node* frame_state);
|
|
|
| // ===========================================================================
|
|
|