| Index: src/ic/ic.cc
|
| diff --git a/src/ic/ic.cc b/src/ic/ic.cc
|
| index b82440f053d7ce598d604ec3b923a668e745dc18..7ae6f670d872bbdc29088fe0bcae95925481867f 100644
|
| --- a/src/ic/ic.cc
|
| +++ b/src/ic/ic.cc
|
| @@ -837,7 +837,7 @@ Handle<Code> KeyedLoadIC::initialize_stub_in_optimized_code(
|
| Handle<Code> KeyedStoreIC::initialize_stub_in_optimized_code(
|
| Isolate* isolate, LanguageMode language_mode) {
|
| StoreICState state = StoreICState(language_mode);
|
| - return VectorKeyedStoreICStub(isolate, state).GetCode();
|
| + return KeyedStoreICStub(isolate, state).GetCode();
|
| }
|
|
|
|
|
| @@ -1588,7 +1588,7 @@ Handle<Code> CallIC::initialize_stub_in_optimized_code(
|
|
|
| Handle<Code> StoreIC::initialize_stub_in_optimized_code(
|
| Isolate* isolate, LanguageMode language_mode) {
|
| - VectorStoreICStub stub(isolate, StoreICState(language_mode));
|
| + StoreICStub stub(isolate, StoreICState(language_mode));
|
| return stub.GetCode();
|
| }
|
|
|
|
|