Index: src/ic/ppc/handler-compiler-ppc.cc |
diff --git a/src/ic/ppc/handler-compiler-ppc.cc b/src/ic/ppc/handler-compiler-ppc.cc |
index 22c0608c973af9ec7582fb79a00487177212a8bd..01f062eebc3d1ed371c336eed68da64290f19d36 100644 |
--- a/src/ic/ppc/handler-compiler-ppc.cc |
+++ b/src/ic/ppc/handler-compiler-ppc.cc |
@@ -325,24 +325,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()) |