| Index: src/code-stubs.h
|
| diff --git a/src/code-stubs.h b/src/code-stubs.h
|
| index 548e54e2d8d318638ec5c9917e9708c90dc13642..b45bf9e835285fec89ba8f425cea4db1913184b7 100644
|
| --- a/src/code-stubs.h
|
| +++ b/src/code-stubs.h
|
| @@ -108,8 +108,7 @@ namespace internal {
|
| V(StoreField) \
|
| V(StoreGlobal) \
|
| V(StoreTransition) \
|
| - V(StringLength) \
|
| - V(RestParamAccess)
|
| + V(StringLength)
|
|
|
| // List of code stubs only used on ARM 32 bits platforms.
|
| #if V8_TARGET_ARCH_ARM
|
| @@ -1915,23 +1914,6 @@ class ArgumentsAccessStub: public PlatformCodeStub {
|
| };
|
|
|
|
|
| -class RestParamAccessStub: public PlatformCodeStub {
|
| - public:
|
| - explicit RestParamAccessStub(Isolate* isolate) : PlatformCodeStub(isolate) { }
|
| -
|
| - CallInterfaceDescriptor GetCallInterfaceDescriptor() const override {
|
| - return ContextOnlyDescriptor(isolate());
|
| - }
|
| -
|
| - private:
|
| - void GenerateNew(MacroAssembler* masm);
|
| -
|
| - void PrintName(std::ostream& os) const override; // NOLINT
|
| -
|
| - DEFINE_PLATFORM_CODE_STUB(RestParamAccess, PlatformCodeStub);
|
| -};
|
| -
|
| -
|
| class RegExpExecStub: public PlatformCodeStub {
|
| public:
|
| explicit RegExpExecStub(Isolate* isolate) : PlatformCodeStub(isolate) { }
|
|
|