Index: src/interpreter/bytecode-array-builder.h |
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h |
index 39e9cbf644163bd565d0e2d9d7d302aca41863fd..de0e24af83e22edb7a648b650624182c9ac9a572 100644 |
--- a/src/interpreter/bytecode-array-builder.h |
+++ b/src/interpreter/bytecode-array-builder.h |
@@ -196,10 +196,13 @@ class BytecodeArrayBuilder final : public ZoneObject { |
size_t receiver_args_count); |
// Operators (register holds the lhs value, accumulator holds the rhs value). |
- BytecodeArrayBuilder& BinaryOperation(Token::Value binop, Register reg); |
+ // Type feedback will be recorded in the |feedback_slot| |
+ BytecodeArrayBuilder& BinaryOperation(Token::Value binop, Register reg, |
+ int feedback_slot); |
// Count Operators (value stored in accumulator). |
- BytecodeArrayBuilder& CountOperation(Token::Value op); |
+ // Type feedback will be recorded in the |feedback_slot| |
+ BytecodeArrayBuilder& CountOperation(Token::Value op, int feedback_slot); |
// Unary Operators. |
BytecodeArrayBuilder& LogicalNot(); |