| Index: src/builtins/x87/builtins-x87.cc
|
| diff --git a/src/builtins/x87/builtins-x87.cc b/src/builtins/x87/builtins-x87.cc
|
| index 98be65e89ade397fd706726d8719d31f9b00c250..e4ebf20daf354f7740535b735f358fed3c0b7203 100644
|
| --- a/src/builtins/x87/builtins-x87.cc
|
| +++ b/src/builtins/x87/builtins-x87.cc
|
| @@ -15,7 +15,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 -------------
|
| // -- eax : number of arguments excluding receiver
|
| @@ -49,7 +49,7 @@ void Builtins::Generate_Adaptor(MacroAssembler* masm, CFunctionId id,
|
| __ Push(edx);
|
| __ PushReturnAddressFrom(ecx);
|
|
|
| - __ JumpToExternalReference(ExternalReference(id, masm->isolate()),
|
| + __ JumpToExternalReference(ExternalReference(address, masm->isolate()),
|
| exit_frame_type == BUILTIN_EXIT);
|
| }
|
|
|
|
|