Index: src/interpreter/bytecode-array-builder.h |
diff --git a/src/interpreter/bytecode-array-builder.h b/src/interpreter/bytecode-array-builder.h |
index 4ff7421536fe9f9b486bef21ebc131704fa36995..6e53ff181f931665911e89ac60b4bd7eb7c66abd 100644 |
--- a/src/interpreter/bytecode-array-builder.h |
+++ b/src/interpreter/bytecode-array-builder.h |
@@ -195,11 +195,10 @@ class BytecodeArrayBuilder final : public ZoneObject, private RegisterMover { |
size_t receiver_args_count); |
// Operators (register holds the lhs value, accumulator holds the rhs value). |
- BytecodeArrayBuilder& BinaryOperation(Token::Value binop, Register reg, |
- Strength strength); |
+ BytecodeArrayBuilder& BinaryOperation(Token::Value binop, Register reg); |
// Count Operators (value stored in accumulator). |
- BytecodeArrayBuilder& CountOperation(Token::Value op, Strength strength); |
+ BytecodeArrayBuilder& CountOperation(Token::Value op); |
// Unary Operators. |
BytecodeArrayBuilder& LogicalNot(); |
@@ -210,8 +209,7 @@ class BytecodeArrayBuilder final : public ZoneObject, private RegisterMover { |
BytecodeArrayBuilder& Delete(Register object, LanguageMode language_mode); |
// Tests. |
- BytecodeArrayBuilder& CompareOperation(Token::Value op, Register reg, |
- Strength strength); |
+ BytecodeArrayBuilder& CompareOperation(Token::Value op, Register reg); |
// Casts. |
BytecodeArrayBuilder& CastAccumulatorToBoolean(); |