| Index: src/ic/ic.cc | 
| diff --git a/src/ic/ic.cc b/src/ic/ic.cc | 
| index f8c3b0669f09272ee32f029a5dc4c1fb08448b81..8cfb3733918fce0904a628f12bdfd4b956b17bc7 100644 | 
| --- a/src/ic/ic.cc | 
| +++ b/src/ic/ic.cc | 
| @@ -988,7 +988,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); | 
| @@ -1007,7 +1007,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: | 
|  |