Index: src/compiler/js-generic-lowering.cc |
diff --git a/src/compiler/js-generic-lowering.cc b/src/compiler/js-generic-lowering.cc |
index 55a594c5dd6bd148863255bd7bd8d0a83458a8ca..e8eab0f102fcd518d5baf2dfdebf5c5346b50998 100644 |
--- a/src/compiler/js-generic-lowering.cc |
+++ b/src/compiler/js-generic-lowering.cc |
@@ -56,7 +56,8 @@ Reduction JSGenericLowering::Reduce(Node* node) { |
#define REPLACE_BINARY_OP_IC_CALL(op, token) \ |
void JSGenericLowering::Lower##op(Node* node) { \ |
- ReplaceWithStubCall(node, CodeFactory::BinaryOpIC(isolate(), token), \ |
+ ReplaceWithStubCall(node, CodeFactory::BinaryOpIC(isolate(), token, \ |
+ OpParameter<LanguageMode>(node)), \ |
CallDescriptor::kPatchableCallSiteWithNop); \ |
} |
REPLACE_BINARY_OP_IC_CALL(JSBitwiseOr, Token::BIT_OR) |