Index: src/ic/x87/ic-x87.cc |
diff --git a/src/ic/x87/ic-x87.cc b/src/ic/x87/ic-x87.cc |
index 76933f01bb0028ac04d5c050a4605bdc261f9a7b..bd699c0ad78dfcb7c42ee7f34c7de990fed3985f 100644 |
--- a/src/ic/x87/ic-x87.cc |
+++ b/src/ic/x87/ic-x87.cc |
@@ -770,6 +770,13 @@ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
__ TailCallRuntime(Runtime::kKeyedStoreIC_Miss); |
} |
+void KeyedStoreIC::GenerateSlow(MacroAssembler* masm) { |
+ // Return address is on the stack. |
+ StoreIC_PushArgs(masm); |
+ |
+ // Do tail-call to runtime routine. |
+ __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow); |
+} |
#undef __ |