Index: src/crankshaft/ia32/lithium-codegen-ia32.cc |
diff --git a/src/crankshaft/ia32/lithium-codegen-ia32.cc b/src/crankshaft/ia32/lithium-codegen-ia32.cc |
index eb06ad792eb4057364677c102623b61b967bf3ad..928d57387db325c650ff33c32c438d8ee74dfac6 100644 |
--- a/src/crankshaft/ia32/lithium-codegen-ia32.cc |
+++ b/src/crankshaft/ia32/lithium-codegen-ia32.cc |
@@ -3232,7 +3232,8 @@ void LCodeGen::DoApplyArguments(LApplyArguments* instr) { |
SafepointGenerator safepoint_generator( |
this, pointers, Safepoint::kLazyDeopt); |
ParameterCount actual(eax); |
- __ InvokeFunction(function, actual, CALL_FUNCTION, safepoint_generator); |
+ __ InvokeFunction(function, no_reg, actual, CALL_FUNCTION, |
+ safepoint_generator); |
} |
@@ -3742,7 +3743,7 @@ void LCodeGen::DoInvokeFunction(LInvokeFunction* instr) { |
SafepointGenerator generator( |
this, pointers, Safepoint::kLazyDeopt); |
ParameterCount count(instr->arity()); |
- __ InvokeFunction(edi, count, CALL_FUNCTION, generator); |
+ __ InvokeFunction(edi, no_reg, count, CALL_FUNCTION, generator); |
} else { |
CallKnownFunction(known_function, |
instr->hydrogen()->formal_parameter_count(), |