Index: src/interpreter/bytecode-array-builder.h |
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h |
index 7f3df94370b2ca0a71fe554c69936ea9b6f57df3..39e9cbf644163bd565d0e2d9d7d302aca41863fd 100644 |
--- a/src/interpreter/bytecode-array-builder.h |
+++ b/src/interpreter/bytecode-array-builder.h |
@@ -214,9 +214,9 @@ class BytecodeArrayBuilder final : public ZoneObject { |
// Casts accumulator and stores result in accumulator. |
BytecodeArrayBuilder& CastAccumulatorToBoolean(); |
- BytecodeArrayBuilder& CastAccumulatorToJSObject(); |
// Casts accumulator and stores result in register |out|. |
+ BytecodeArrayBuilder& CastAccumulatorToJSObject(Register out); |
BytecodeArrayBuilder& CastAccumulatorToName(Register out); |
BytecodeArrayBuilder& CastAccumulatorToNumber(Register out); |
@@ -243,7 +243,8 @@ class BytecodeArrayBuilder final : public ZoneObject { |
BytecodeArrayBuilder& Debugger(); |
// Complex flow control. |
- BytecodeArrayBuilder& ForInPrepare(Register cache_info_triple); |
+ BytecodeArrayBuilder& ForInPrepare(Register receiver, |
+ Register cache_info_triple); |
BytecodeArrayBuilder& ForInDone(Register index, Register cache_length); |
BytecodeArrayBuilder& ForInNext(Register receiver, Register index, |
Register cache_type_array_pair, |