| Index: src/typing.cc
|
| diff --git a/src/typing.cc b/src/typing.cc
|
| index e9da680c32cd3ec025e80137e91b8a34fefd3dc4..3fd1ce50577df691f288f55423f6ab19bbc089d1 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, expr->op());
|
| + &left_type, &right_type, &type, &fixed_right_arg);
|
| NarrowLowerType(expr, type);
|
| NarrowLowerType(expr->left(), left_type);
|
| NarrowLowerType(expr->right(), right_type);
|
|
|