| Index: src/ic/arm/handler-compiler-arm.cc
 | 
| diff --git a/src/ic/arm/handler-compiler-arm.cc b/src/ic/arm/handler-compiler-arm.cc
 | 
| index 1b6b51538eb81287c9029c720f14b6e84629a3ac..31c71af737a97e34e15a353ea7e75dc14acaad08 100644
 | 
| --- a/src/ic/arm/handler-compiler-arm.cc
 | 
| +++ b/src/ic/arm/handler-compiler-arm.cc
 | 
| @@ -307,15 +307,10 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
 | 
|  
 | 
|  
 | 
|  static void StoreIC_PushArgs(MacroAssembler* masm) {
 | 
| -  if (FLAG_vector_stores) {
 | 
| -    __ Push(StoreDescriptor::ReceiverRegister(),
 | 
| -            StoreDescriptor::NameRegister(), StoreDescriptor::ValueRegister(),
 | 
| -            VectorStoreICDescriptor::SlotRegister(),
 | 
| -            VectorStoreICDescriptor::VectorRegister());
 | 
| -  } else {
 | 
| -    __ Push(StoreDescriptor::ReceiverRegister(),
 | 
| -            StoreDescriptor::NameRegister(), StoreDescriptor::ValueRegister());
 | 
| -  }
 | 
| +  __ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(),
 | 
| +          StoreDescriptor::ValueRegister(),
 | 
| +          VectorStoreICDescriptor::SlotRegister(),
 | 
| +          VectorStoreICDescriptor::VectorRegister());
 | 
|  }
 | 
|  
 | 
|  
 | 
| @@ -324,7 +319,7 @@ void NamedStoreHandlerCompiler::GenerateSlow(MacroAssembler* masm) {
 | 
|  
 | 
|    // The slow case calls into the runtime to complete the store without causing
 | 
|    // an IC miss that would otherwise cause a transition to the generic stub.
 | 
| -  __ TailCallRuntime(Runtime::kStoreIC_Slow, FLAG_vector_stores ? 5 : 3, 1);
 | 
| +  __ TailCallRuntime(Runtime::kStoreIC_Slow, 5, 1);
 | 
|  }
 | 
|  
 | 
|  
 | 
| @@ -333,8 +328,7 @@ void ElementHandlerCompiler::GenerateStoreSlow(MacroAssembler* masm) {
 | 
|  
 | 
|    // The slow case calls into the runtime to complete the store without causing
 | 
|    // an IC miss that would otherwise cause a transition to the generic stub.
 | 
| -  __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow, FLAG_vector_stores ? 5 : 3,
 | 
| -                     1);
 | 
| +  __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow, 5, 1);
 | 
|  }
 | 
|  
 | 
|  
 | 
| 
 |