Index: src/full-codegen/x87/full-codegen-x87.cc |
diff --git a/src/full-codegen/x87/full-codegen-x87.cc b/src/full-codegen/x87/full-codegen-x87.cc |
index 486ddd93e45ea5d631f2272a23f6b7026502213b..bb71e41b355dd4fbbd0a89376ccb02db83bcd6ae 100644 |
--- a/src/full-codegen/x87/full-codegen-x87.cc |
+++ b/src/full-codegen/x87/full-codegen-x87.cc |
@@ -2891,7 +2891,7 @@ void FullCodeGenerator::VisitCallNew(CallNew* expr) { |
// Call the construct call builtin that handles allocation and |
// constructor invocation. |
- SetConstructCallPosition(expr, arg_count); |
+ SetConstructCallPosition(expr); |
// Load function and argument count into edi and eax. |
__ Move(eax, Immediate(arg_count)); |
@@ -2927,7 +2927,7 @@ void FullCodeGenerator::EmitSuperConstructorCall(Call* expr) { |
// Call the construct call builtin that handles allocation and |
// constructor invocation. |
- SetConstructCallPosition(expr, arg_count); |
+ SetConstructCallPosition(expr); |
// Load new target into edx. |
VisitForAccumulatorValue(super_call_ref->new_target_var()); |
@@ -3634,7 +3634,7 @@ void FullCodeGenerator::EmitDefaultConstructorCallSuper(CallRuntime* expr) { |
// Call the construct call builtin that handles allocation and |
// constructor invocation. |
- SetConstructCallPosition(expr, 0); |
+ SetConstructCallPosition(expr); |
// Check if the calling frame is an arguments adaptor frame. |
Label adaptor_frame, args_set_up, runtime; |