| Index: src/ic/ppc/handler-compiler-ppc.cc
|
| diff --git a/src/ic/ppc/handler-compiler-ppc.cc b/src/ic/ppc/handler-compiler-ppc.cc
|
| index b6de7601d8ecef745d2eb593c58786a6c204143f..48a905793bfb0f6dc2b757e967e9443d460b5dd5 100644
|
| --- a/src/ic/ppc/handler-compiler-ppc.cc
|
| +++ b/src/ic/ppc/handler-compiler-ppc.cc
|
| @@ -40,7 +40,8 @@ void NamedLoadHandlerCompiler::GenerateLoadViaGetter(
|
| ParameterCount actual(0);
|
| ParameterCount expected(expected_arguments);
|
| __ LoadAccessor(r4, holder, accessor_index, ACCESSOR_GETTER);
|
| - __ InvokeFunction(r4, expected, actual, CALL_FUNCTION, NullCallWrapper());
|
| + __ InvokeFunction(r4, expected, actual, CALL_FUNCTION,
|
| + CheckDebugStepCallWrapper());
|
| } else {
|
| // If we generate a global code snippet for deoptimization only, remember
|
| // the place to continue after deoptimization.
|
| @@ -81,7 +82,8 @@ void NamedStoreHandlerCompiler::GenerateStoreViaSetter(
|
| ParameterCount actual(1);
|
| ParameterCount expected(expected_arguments);
|
| __ LoadAccessor(r4, holder, accessor_index, ACCESSOR_SETTER);
|
| - __ InvokeFunction(r4, expected, actual, CALL_FUNCTION, NullCallWrapper());
|
| + __ InvokeFunction(r4, expected, actual, CALL_FUNCTION,
|
| + CheckDebugStepCallWrapper());
|
| } else {
|
| // If we generate a global code snippet for deoptimization only, remember
|
| // the place to continue after deoptimization.
|
|
|