Index: src/ia32/builtins-ia32.cc |
diff --git a/src/ia32/builtins-ia32.cc b/src/ia32/builtins-ia32.cc |
index cf507c435c3717dae4c279b9571be17cbe5e3f40..96b2787d9362265579083bc135b3fdf63f0ed30c 100644 |
--- a/src/ia32/builtins-ia32.cc |
+++ b/src/ia32/builtins-ia32.cc |
@@ -16,8 +16,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 ------------- |
// -- eax : number of arguments excluding receiver |
// -- edi : target |
@@ -47,8 +46,7 @@ |
// including the receiver and the extra arguments. |
__ add(eax, Immediate(num_extra_args + 1)); |
- __ JumpToExternalReference(ExternalReference(id, masm->isolate()), |
- exit_frame_type == BUILTIN_EXIT); |
+ __ JumpToExternalReference(ExternalReference(id, masm->isolate())); |
} |
static void GenerateTailCallToReturnedCode(MacroAssembler* masm, |