Index: src/typing-asm.h |
diff --git a/src/typing-asm.h b/src/typing-asm.h |
index a2e53636a099b777be20fdb8e02c973276e327f3..6f00aa8f0964cf6b1a4c89e24da4f0e344b10dd2 100644 |
--- a/src/typing-asm.h |
+++ b/src/typing-asm.h |
@@ -84,8 +84,9 @@ class AsmTyper : public AstVisitor { |
void VisitWithExpectation(Expression* expr, Type* expected_type, |
const char* msg); |
- void VisitIntegerBinaryOperation(BinaryOperation* expr, Type* expected_type, |
- Type* result_type); |
+ void VisitIntegerBitwiseOperator(BinaryOperation* expr, Type* left_expected, |
+ Type* right_expected, Type* result_type, |
+ bool conversion); |
Zone* zone() const { return zone_; } |