Index: src/compiler/instruction-selector.h |
diff --git a/src/compiler/instruction-selector.h b/src/compiler/instruction-selector.h |
index 4e916befb19b285628e9bd5ec3f909a643175221..ca5e7e3218b58d72f895822b991e14ad076198b6 100644 |
--- a/src/compiler/instruction-selector.h |
+++ b/src/compiler/instruction-selector.h |
@@ -59,6 +59,16 @@ class InstructionSelector FINAL { |
InstructionOperand* a, InstructionOperand* b, |
InstructionOperand* c, InstructionOperand* d, |
size_t temp_count = 0, InstructionOperand* *temps = NULL); |
+ Instruction* Emit(InstructionCode opcode, InstructionOperand* output, |
+ InstructionOperand* a, InstructionOperand* b, |
+ InstructionOperand* c, InstructionOperand* d, |
+ InstructionOperand* e, size_t temp_count = 0, |
+ InstructionOperand* *temps = NULL); |
+ 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); |
Instruction* Emit(InstructionCode opcode, size_t output_count, |
InstructionOperand** outputs, size_t input_count, |
InstructionOperand** inputs, size_t temp_count = 0, |