Index: src/interpreter/bytecode-array-builder.h |
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h |
index bb8c980ecee2120e5bde463e58e6c01e8460a6a9..9ed62d304ca783bc7268838503ea1412188d3ebb 100644 |
--- a/src/interpreter/bytecode-array-builder.h |
+++ b/src/interpreter/bytecode-array-builder.h |
@@ -199,10 +199,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(); |