| Index: src/code-stubs.h
|
| diff --git a/src/code-stubs.h b/src/code-stubs.h
|
| index 508ca172926a0f7cfd750635bf2ef5aadf27813b..77e4f2aa55264c21772d8353e1182b2594035860 100644
|
| --- a/src/code-stubs.h
|
| +++ b/src/code-stubs.h
|
| @@ -50,7 +50,6 @@ class Node;
|
| V(StoreElement) \
|
| V(SubString) \
|
| V(LoadGlobalIC) \
|
| - V(FastNewObject) \
|
| V(FastNewRestParameter) \
|
| V(FastNewSloppyArguments) \
|
| V(FastNewStrictArguments) \
|
| @@ -803,15 +802,6 @@ class FastNewFunctionContextStub final : public TurboFanCodeStub {
|
| DEFINE_TURBOFAN_CODE_STUB(FastNewFunctionContext, TurboFanCodeStub);
|
| };
|
|
|
| -class FastNewObjectStub final : public PlatformCodeStub {
|
| - public:
|
| - explicit FastNewObjectStub(Isolate* isolate) : PlatformCodeStub(isolate) {}
|
| -
|
| - DEFINE_CALL_INTERFACE_DESCRIPTOR(FastNewObject);
|
| - DEFINE_PLATFORM_CODE_STUB(FastNewObject, PlatformCodeStub);
|
| -};
|
| -
|
| -
|
| // TODO(turbofan): This stub should be possible to write in TurboFan
|
| // using the CodeStubAssembler very soon in a way that is as efficient
|
| // and easy as the current handwritten version, which is partly a copy
|
|
|