Index: src/interpreter/interpreter.h |
diff --git a/src/interpreter/interpreter.h b/src/interpreter/interpreter.h |
index f45b146c56454554e4b72ca7f2a4304a07dc1c8d..90e25f0b2d06d5838d3da6cce6f3260d2a1235d6 100644 |
--- a/src/interpreter/interpreter.h |
+++ b/src/interpreter/interpreter.h |
@@ -83,6 +83,11 @@ class Interpreter { |
template <class Generator> |
void DoBinaryOpWithFeedback(InterpreterAssembler* assembler); |
+ // Generates code to perform the bitwise binary operation via |Generator| and |
+ // collects type feedback from the lhs, rhs and result. |
+ template <class Generator> |
+ void DoBitwiseBinaryOpAndCollectFeedback(InterpreterAssembler* assembler); |
+ |
// Generates code to perform the binary operation via |Generator| using |
// an immediate value rather the accumulator as the rhs operand. |
template <class Generator> |