Index: src/x64/full-codegen-x64.cc |
diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc |
index 8a3f965a3f4b851d1002a93416b25ae52bd73271..e4793683ee78ec8868bbd86e934a0257f950e4c6 100644 |
--- a/src/x64/full-codegen-x64.cc |
+++ b/src/x64/full-codegen-x64.cc |
@@ -2268,7 +2268,7 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr, |
__ bind(&stub_call); |
__ movq(rax, rcx); |
- BinaryOpStub stub(op, mode); |
+ BinaryOpICStub stub(op, mode); |
CallIC(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, |
expr->BinaryOperationFeedbackId()); |
patch_site.EmitPatchInfo(); |
@@ -2317,7 +2317,7 @@ void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr, |
Token::Value op, |
OverwriteMode mode) { |
__ pop(rdx); |
- BinaryOpStub stub(op, mode); |
+ BinaryOpICStub stub(op, mode); |
JumpPatchSite patch_site(masm_); // unbound, signals no inlined smi code. |
CallIC(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, |
expr->BinaryOperationFeedbackId()); |
@@ -4405,7 +4405,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
__ bind(&stub_call); |
__ movq(rdx, rax); |
__ Move(rax, Smi::FromInt(1)); |
- BinaryOpStub stub(expr->binary_op(), NO_OVERWRITE); |
+ BinaryOpICStub stub(expr->binary_op(), NO_OVERWRITE); |
CallIC(stub.GetCode(isolate()), |
RelocInfo::CODE_TARGET, |
expr->CountBinOpFeedbackId()); |