Index: src/ic/mips/ic-mips.cc |
diff --git a/src/ic/mips/ic-mips.cc b/src/ic/mips/ic-mips.cc |
index 3a28b13bd8f76d4d78a09be938a25386bc294ccd..bc4bc58a44fbe1cb601a7b70eb1e8d9ab6c7b752 100644 |
--- a/src/ic/mips/ic-mips.cc |
+++ b/src/ic/mips/ic-mips.cc |
@@ -723,6 +723,14 @@ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
__ TailCallRuntime(Runtime::kKeyedStoreIC_Miss); |
} |
+void KeyedStoreIC::GenerateSlow(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); |
+} |
+ |
void StoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |