Index: src/code-stubs.h |
diff --git a/src/code-stubs.h b/src/code-stubs.h |
index 2d1a5cd2d09eb1c86fa3d6bb1d8bbfd3056daf2b..21e21356bb6b6407ea4ee1546a9208a1e432533e 100644 |
--- a/src/code-stubs.h |
+++ b/src/code-stubs.h |
@@ -1856,15 +1856,12 @@ 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_CALL_INTERFACE_DESCRIPTOR(RestParamAccess); |
DEFINE_PLATFORM_CODE_STUB(RestParamAccess, PlatformCodeStub); |
}; |