| Index: src/ic/x64/ic-x64.cc
|
| diff --git a/src/ic/x64/ic-x64.cc b/src/ic/x64/ic-x64.cc
|
| index 21a114830f87c6b909221c525c0c20468cc989d1..61c2cb4ec0ffc06fabeb055bab94ce2b6bb0ce5c 100644
|
| --- a/src/ic/x64/ic-x64.cc
|
| +++ b/src/ic/x64/ic-x64.cc
|
| @@ -764,6 +764,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 __
|
|
|
|
|