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