| Index: src/code-stubs.cc
|
| diff --git a/src/code-stubs.cc b/src/code-stubs.cc
|
| index fe7d77eaa26f870d70f6a75c5f88ce055c894b76..d86bc70dcf105399d1f0ba91cb2dbc605797601c 100644
|
| --- a/src/code-stubs.cc
|
| +++ b/src/code-stubs.cc
|
| @@ -119,7 +119,8 @@ Handle<Code> PlatformCodeStub::GenerateCode(Isolate* isolate) {
|
| GetCodeKind(),
|
| GetICState(),
|
| GetExtraICState(),
|
| - GetStubType());
|
| + GetStubType(),
|
| + GetStubFlags());
|
| Handle<Code> new_object = factory->NewCode(
|
| desc, flags, masm.CodeObject(), NeedsImmovableCode());
|
| return new_object;
|
| @@ -748,14 +749,6 @@ void FastNewContextStub::InstallDescriptors(Isolate* isolate) {
|
|
|
|
|
| // static
|
| -void FastCloneShallowArrayStub::InstallDescriptors(Isolate* isolate) {
|
| - FastCloneShallowArrayStub stub(FastCloneShallowArrayStub::CLONE_ELEMENTS,
|
| - DONT_TRACK_ALLOCATION_SITE, 0);
|
| - InstallDescriptor(isolate, &stub);
|
| -}
|
| -
|
| -
|
| -// static
|
| void BinaryOpICStub::InstallDescriptors(Isolate* isolate) {
|
| BinaryOpICStub stub(Token::ADD, NO_OVERWRITE);
|
| InstallDescriptor(isolate, &stub);
|
|
|