Index: src/x64/code-stubs-x64.cc |
diff --git a/src/x64/code-stubs-x64.cc b/src/x64/code-stubs-x64.cc |
index 5781e5b14494a36a2a259fcf995ebb38c3725a11..4d06ed1700da0eb9d032c30cbb899c5b03ab940d 100644 |
--- a/src/x64/code-stubs-x64.cc |
+++ b/src/x64/code-stubs-x64.cc |
@@ -64,6 +64,12 @@ void FastArrayPushStub::InitializeDescriptor(CodeStubDescriptor* descriptor) { |
descriptor->Initialize(rax, deopt_handler, -1, JS_FUNCTION_STUB_MODE); |
} |
+void FastFunctionBindStub::InitializeDescriptor( |
+ CodeStubDescriptor* descriptor) { |
+ Address deopt_handler = Runtime::FunctionForId(Runtime::kFunctionBind)->entry; |
+ descriptor->Initialize(rax, deopt_handler, -1, JS_FUNCTION_STUB_MODE); |
+} |
+ |
void InternalArrayNArgumentsConstructorStub::InitializeDescriptor( |
CodeStubDescriptor* descriptor) { |
InitializeInternalArrayConstructorDescriptor(isolate(), descriptor, -1); |