| Index: src/builtins/ppc/builtins-ppc.cc
|
| diff --git a/src/builtins/ppc/builtins-ppc.cc b/src/builtins/ppc/builtins-ppc.cc
|
| index 9e6ab521c6bc701e279adb1f7de8751fa15cde5b..4414c4cfe370edbc377edd67d4c55190e4ce0ac4 100644
|
| --- a/src/builtins/ppc/builtins-ppc.cc
|
| +++ b/src/builtins/ppc/builtins-ppc.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 -------------
|
| // -- r3 : number of arguments excluding receiver
|
| @@ -44,7 +44,7 @@ void Builtins::Generate_Adaptor(MacroAssembler* masm, CFunctionId id,
|
| __ Push(r3, r4, r6);
|
| __ SmiUntag(r3);
|
|
|
| - __ JumpToExternalReference(ExternalReference(id, masm->isolate()),
|
| + __ JumpToExternalReference(ExternalReference(address, masm->isolate()),
|
| exit_frame_type == BUILTIN_EXIT);
|
| }
|
|
|
|
|