Index: src/compiler/code-generator-impl.h |
diff --git a/src/compiler/code-generator-impl.h b/src/compiler/code-generator-impl.h |
index 2e95bec0cc17188fbfc8d1997bbba90771d7fc3a..8dd50018fc4758acb88bc24aa6e24c824f12586a 100644 |
--- a/src/compiler/code-generator-impl.h |
+++ b/src/compiler/code-generator-impl.h |
@@ -43,6 +43,10 @@ class InstructionOperandConverter { |
return ToConstant(instr_->InputAt(index)).ToInt32(); |
} |
+ int64_t InputInt64(size_t index) { |
+ return ToConstant(instr_->InputAt(index)).ToInt64(); |
+ } |
+ |
int8_t InputInt8(size_t index) { |
return static_cast<int8_t>(InputInt32(index)); |
} |