| Index: src/ic/ic.cc
|
| diff --git a/src/ic/ic.cc b/src/ic/ic.cc
|
| index 651eb2cac61ac24f93d232e1ecded9c892383bf6..ea71fa5d64c34c79be92a754ebad2374742b67bc 100644
|
| --- a/src/ic/ic.cc
|
| +++ b/src/ic/ic.cc
|
| @@ -987,7 +987,7 @@ Handle<Code> LoadIC::load_global(Isolate* isolate, Handle<GlobalObject> global,
|
| Handle<Code> LoadIC::initialize_stub_in_optimized_code(
|
| Isolate* isolate, ExtraICState extra_state, State initialization_state) {
|
| if (FLAG_vector_ics) {
|
| - return VectorLoadStub(isolate, LoadICState(extra_state)).GetCode();
|
| + return VectorRawLoadStub(isolate, LoadICState(extra_state)).GetCode();
|
| }
|
| return PropertyICCompiler::ComputeLoad(isolate, initialization_state,
|
| extra_state);
|
| @@ -1006,7 +1006,7 @@ Handle<Code> KeyedLoadIC::initialize_stub(Isolate* isolate) {
|
| Handle<Code> KeyedLoadIC::initialize_stub_in_optimized_code(
|
| Isolate* isolate, State initialization_state) {
|
| if (FLAG_vector_ics) {
|
| - return VectorKeyedLoadStub(isolate).GetCode();
|
| + return VectorRawKeyedLoadStub(isolate).GetCode();
|
| }
|
| switch (initialization_state) {
|
| case UNINITIALIZED:
|
|
|