| Index: test/cctest/compiler/test-run-bytecode-graph-builder.cc
|
| diff --git a/test/cctest/compiler/test-run-bytecode-graph-builder.cc b/test/cctest/compiler/test-run-bytecode-graph-builder.cc
|
| index c64a9346f725efabf96925c9ca6f4f3204774d5c..06cb2f754f385bf76921bc0e411354fb7dce5abd 100644
|
| --- a/test/cctest/compiler/test-run-bytecode-graph-builder.cc
|
| +++ b/test/cctest/compiler/test-run-bytecode-graph-builder.cc
|
| @@ -25,8 +25,7 @@ static const char kFunctionName[] = "f";
|
| static MaybeHandle<Object> CallFunction(Isolate* isolate,
|
| Handle<JSFunction> function) {
|
| return Execution::Call(isolate, function,
|
| - isolate->factory()->undefined_value(), 0, nullptr,
|
| - false);
|
| + isolate->factory()->undefined_value(), 0, nullptr);
|
| }
|
|
|
|
|
| @@ -37,7 +36,7 @@ static MaybeHandle<Object> CallFunction(Isolate* isolate,
|
| Handle<Object> argv[] = {args...};
|
| return Execution::Call(isolate, function,
|
| isolate->factory()->undefined_value(), sizeof...(args),
|
| - argv, false);
|
| + argv);
|
| }
|
|
|
|
|
|
|