Index: src/ic/ic.cc |
diff --git a/src/ic/ic.cc b/src/ic/ic.cc |
index a7912930012998d43a3fcd477c5b1f6213aa40cc..c86b932d83c414f3dd7ee4ce35b2fe4ac37c52c0 100644 |
--- a/src/ic/ic.cc |
+++ b/src/ic/ic.cc |
@@ -1589,16 +1589,17 @@ MaybeHandle<Object> StoreIC::Store(Handle<Object> object, Handle<Name> name, |
} |
-Handle<Code> CallIC::initialize_stub(Isolate* isolate, int argc) { |
- CallICTrampolineStub stub(isolate, CallICState(argc)); |
+Handle<Code> CallIC::initialize_stub(Isolate* isolate, int argc, |
+ ConvertReceiverMode mode) { |
+ CallICTrampolineStub stub(isolate, CallICState(argc, mode)); |
Handle<Code> code = stub.GetCode(); |
return code; |
} |
-Handle<Code> CallIC::initialize_stub_in_optimized_code(Isolate* isolate, |
- int argc) { |
- CallICStub stub(isolate, CallICState(argc)); |
+Handle<Code> CallIC::initialize_stub_in_optimized_code( |
+ Isolate* isolate, int argc, ConvertReceiverMode mode) { |
+ CallICStub stub(isolate, CallICState(argc, mode)); |
Handle<Code> code = stub.GetCode(); |
return code; |
} |