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 4ed765e73f18cb29c3223f3e6edf016d99be5619..4eb957325e226585ed1429115e0132a059bbfd9c 100644 |
--- a/src/ic/arm/handler-compiler-arm.cc |
+++ b/src/ic/arm/handler-compiler-arm.cc |
@@ -330,24 +330,6 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall( |
__ TailCallStub(&stub); |
} |
- |
-static void StoreIC_PushArgs(MacroAssembler* masm) { |
- __ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(), |
- StoreDescriptor::ValueRegister(), |
- StoreWithVectorDescriptor::SlotRegister(), |
- StoreWithVectorDescriptor::VectorRegister()); |
-} |
- |
- |
-void ElementHandlerCompiler::GenerateStoreSlow(MacroAssembler* masm) { |
- StoreIC_PushArgs(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); |
-} |
- |
- |
#undef __ |
#define __ ACCESS_MASM(masm()) |