Index: src/interpreter/bytecode-array-iterator.h |
diff --git a/src/interpreter/bytecode-array-iterator.h b/src/interpreter/bytecode-array-iterator.h |
index b372894fd8a3284aff1cdd93dc239e642b3ea318..90001ef293d5f630fe8132a782bd57253187e288 100644 |
--- a/src/interpreter/bytecode-array-iterator.h |
+++ b/src/interpreter/bytecode-array-iterator.h |
@@ -8,6 +8,7 @@ |
#include "src/handles.h" |
#include "src/interpreter/bytecodes.h" |
#include "src/objects.h" |
+#include "src/runtime/runtime.h" |
namespace v8 { |
namespace internal { |
@@ -34,7 +35,8 @@ class BytecodeArrayIterator { |
uint32_t GetRegisterCountOperand(int operand_index) const; |
Register GetRegisterOperand(int operand_index) const; |
int GetRegisterOperandRange(int operand_index) const; |
- uint32_t GetRuntimeIdOperand(int operand_index) const; |
+ Runtime::FunctionId GetRuntimeIdOperand(int operand_index) const; |
+ Runtime::FunctionId GetIntrinsicIdOperand(int operand_index) const; |
Handle<Object> GetConstantForIndexOperand(int operand_index) const; |
// Returns the absolute offset of the branch target at the current |