| Index: src/builtins/mips/builtins-mips.cc
|
| diff --git a/src/builtins/mips/builtins-mips.cc b/src/builtins/mips/builtins-mips.cc
|
| index f3231c3168eb1d598352068de04598a14d6efb0f..c70c81cde6ddca677ecc707f87494cdb089646dc 100644
|
| --- a/src/builtins/mips/builtins-mips.cc
|
| +++ b/src/builtins/mips/builtins-mips.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 -------------
|
| // -- a0 : number of arguments excluding receiver
|
| @@ -44,8 +44,8 @@ void Builtins::Generate_Adaptor(MacroAssembler* masm, CFunctionId id,
|
| __ Push(a0, a1, a3);
|
| __ SmiUntag(a0);
|
|
|
| - __ JumpToExternalReference(ExternalReference(id, masm->isolate()), PROTECT,
|
| - exit_frame_type == BUILTIN_EXIT);
|
| + __ JumpToExternalReference(ExternalReference(address, masm->isolate()),
|
| + PROTECT, exit_frame_type == BUILTIN_EXIT);
|
| }
|
|
|
| // Load the built-in InternalArray function from the current context.
|
|
|