| Index: src/builtins.cc
|
| diff --git a/src/builtins.cc b/src/builtins.cc
|
| index 64ec3d9fcc485f9d8fe9c7856072c4f5c4cea84b..5c8d21e8ffec96744bb8e482a4081985d3738754 100644
|
| --- a/src/builtins.cc
|
| +++ b/src/builtins.cc
|
| @@ -35,6 +35,7 @@
|
| #include "ic-inl.h"
|
| #include "heap-profiler.h"
|
| #include "mark-compact.h"
|
| +#include "stub-cache.h"
|
| #include "vm-state-inl.h"
|
|
|
| namespace v8 {
|
| @@ -1388,6 +1389,11 @@ static void Generate_StoreIC_GlobalProxy_Strict(MacroAssembler* masm) {
|
| }
|
|
|
|
|
| +static void Generate_SetterStubForDeopt(MacroAssembler* masm) {
|
| + StoreStubCompiler::GenerateStoreViaSetter(masm, Handle<JSFunction>());
|
| +}
|
| +
|
| +
|
| static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) {
|
| KeyedStoreIC::GenerateGeneric(masm, kNonStrictMode);
|
| }
|
|
|