| Index: src/builtins/x64/builtins-x64.cc
|
| diff --git a/src/builtins/x64/builtins-x64.cc b/src/builtins/x64/builtins-x64.cc
|
| index 1107335c655ed7ae7ae6e26d99b79e758167e131..c015405c6028e5a40cdcdfc25dce855102184c58 100644
|
| --- a/src/builtins/x64/builtins-x64.cc
|
| +++ b/src/builtins/x64/builtins-x64.cc
|
| @@ -14,7 +14,7 @@ namespace internal {
|
|
|
| #define __ ACCESS_MASM(masm)
|
|
|
| -void Builtins::Generate_Adaptor(MacroAssembler* masm, CFunctionId id,
|
| +void Builtins::Generate_Adaptor(MacroAssembler* masm, Address address,
|
| ExitFrameType exit_frame_type) {
|
| // ----------- S t a t e -------------
|
| // -- rax : number of arguments excluding receiver
|
| @@ -49,7 +49,7 @@ void Builtins::Generate_Adaptor(MacroAssembler* masm, CFunctionId id,
|
| __ Push(rdx);
|
| __ PushReturnAddressFrom(kScratchRegister);
|
|
|
| - __ JumpToExternalReference(ExternalReference(id, masm->isolate()),
|
| + __ JumpToExternalReference(ExternalReference(address, masm->isolate()),
|
| exit_frame_type == BUILTIN_EXIT);
|
| }
|
|
|
|
|