Index: src/x64/lithium-codegen-x64.cc |
diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc |
index 49814a37c24a4aef51caee7cadfeb8435534aa20..fc2b4ec5f6e247347efc5a0552f6c7f8b9aeb78f 100644 |
--- a/src/x64/lithium-codegen-x64.cc |
+++ b/src/x64/lithium-codegen-x64.cc |
@@ -2104,7 +2104,8 @@ void LCodeGen::DoArithmeticT(LArithmeticT* instr) { |
DCHECK(ToRegister(instr->right()).is(rax)); |
DCHECK(ToRegister(instr->result()).is(rax)); |
- Handle<Code> code = CodeFactory::BinaryOpIC(isolate(), instr->op()).code(); |
+ Handle<Code> code = CodeFactory::BinaryOpIC( |
+ isolate(), instr->op(), language_mode()).code(); |
CallCode(code, RelocInfo::CODE_TARGET, instr); |
} |