Index: src/x64/builtins-x64.cc |
diff --git a/src/x64/builtins-x64.cc b/src/x64/builtins-x64.cc |
index 45dea848b50a2bc6d0db6db8c1901da6739ece34..fb43324d58a0d8fca734d4f1e383b9518a7a15d2 100644 |
--- a/src/x64/builtins-x64.cc |
+++ b/src/x64/builtins-x64.cc |
@@ -15,8 +15,7 @@ |
#define __ ACCESS_MASM(masm) |
-void Builtins::Generate_Adaptor(MacroAssembler* masm, CFunctionId id, |
- ExitFrameType exit_frame_type) { |
+void Builtins::Generate_Adaptor(MacroAssembler* masm, CFunctionId id) { |
// ----------- S t a t e ------------- |
// -- rax : number of arguments excluding receiver |
// -- rdi : target |
@@ -47,8 +46,7 @@ |
// including the receiver and the extra arguments. |
__ addp(rax, Immediate(num_extra_args + 1)); |
- __ JumpToExternalReference(ExternalReference(id, masm->isolate()), |
- exit_frame_type == BUILTIN_EXIT); |
+ __ JumpToExternalReference(ExternalReference(id, masm->isolate())); |
} |