Index: src/typing.cc |
diff --git a/src/typing.cc b/src/typing.cc |
index 34bb64bd7de022f8835c4320db07a64e5aeb9c64..a32f9b29bebcba2f269a3768201402eeabb3b0b9 100644 |
--- a/src/typing.cc |
+++ b/src/typing.cc |
@@ -543,7 +543,7 @@ void AstTyper::VisitBinaryOperation(BinaryOperation* expr) { |
Handle<Type> type, left_type, right_type; |
Maybe<int> fixed_right_arg; |
oracle()->BinaryType(expr->BinaryOperationFeedbackId(), |
- &left_type, &right_type, &type, &fixed_right_arg); |
+ &left_type, &right_type, &type, &fixed_right_arg, expr->op()); |
NarrowLowerType(expr, type); |
NarrowLowerType(expr->left(), left_type); |
NarrowLowerType(expr->right(), right_type); |