| Index: src/compiler/instruction-selector.h
|
| diff --git a/src/compiler/instruction-selector.h b/src/compiler/instruction-selector.h
|
| index b1ba1057a08dfc6426fe89e6bc682a70054872f4..52aea70eb6f2a4ada099131c11c74251bed937a2 100644
|
| --- a/src/compiler/instruction-selector.h
|
| +++ b/src/compiler/instruction-selector.h
|
| @@ -68,35 +68,35 @@ class InstructionSelector final {
|
| // ===========================================================================
|
|
|
| Instruction* Emit(InstructionCode opcode, InstructionOperand output,
|
| - size_t temp_count = 0, InstructionOperand* temps = NULL);
|
| + size_t temp_count = 0, InstructionOperand* temps = nullptr);
|
| Instruction* Emit(InstructionCode opcode, InstructionOperand output,
|
| InstructionOperand a, size_t temp_count = 0,
|
| - InstructionOperand* temps = NULL);
|
| + InstructionOperand* temps = nullptr);
|
| Instruction* Emit(InstructionCode opcode, InstructionOperand output,
|
| InstructionOperand a, InstructionOperand b,
|
| - size_t temp_count = 0, InstructionOperand* temps = NULL);
|
| + size_t temp_count = 0, InstructionOperand* temps = nullptr);
|
| Instruction* Emit(InstructionCode opcode, InstructionOperand output,
|
| InstructionOperand a, InstructionOperand b,
|
| InstructionOperand c, size_t temp_count = 0,
|
| - InstructionOperand* temps = NULL);
|
| + InstructionOperand* temps = nullptr);
|
| Instruction* Emit(InstructionCode opcode, InstructionOperand output,
|
| InstructionOperand a, InstructionOperand b,
|
| InstructionOperand c, InstructionOperand d,
|
| - size_t temp_count = 0, InstructionOperand* temps = NULL);
|
| + size_t temp_count = 0, InstructionOperand* temps = nullptr);
|
| Instruction* Emit(InstructionCode opcode, InstructionOperand output,
|
| InstructionOperand a, InstructionOperand b,
|
| InstructionOperand c, InstructionOperand d,
|
| InstructionOperand e, size_t temp_count = 0,
|
| - InstructionOperand* temps = NULL);
|
| + InstructionOperand* temps = nullptr);
|
| Instruction* Emit(InstructionCode opcode, InstructionOperand output,
|
| InstructionOperand a, InstructionOperand b,
|
| InstructionOperand c, InstructionOperand d,
|
| InstructionOperand e, InstructionOperand f,
|
| - size_t temp_count = 0, InstructionOperand* temps = NULL);
|
| + size_t temp_count = 0, InstructionOperand* temps = nullptr);
|
| Instruction* Emit(InstructionCode opcode, size_t output_count,
|
| InstructionOperand* outputs, size_t input_count,
|
| InstructionOperand* inputs, size_t temp_count = 0,
|
| - InstructionOperand* temps = NULL);
|
| + InstructionOperand* temps = nullptr);
|
| Instruction* Emit(Instruction* instr);
|
|
|
| // ===========================================================================
|
|
|