| Index: test/cctest/compiler/function-tester.h
|
| diff --git a/test/cctest/compiler/function-tester.h b/test/cctest/compiler/function-tester.h
|
| index 1a1730e3659d9b2ae0e532addb45e224a46602c5..56ab514c6557d3808551aeccfef37b71802d3c75 100644
|
| --- a/test/cctest/compiler/function-tester.h
|
| +++ b/test/cctest/compiler/function-tester.h
|
| @@ -51,13 +51,13 @@
|
|
|
| MaybeHandle<Object> Call(Handle<Object> a, Handle<Object> b) {
|
| Handle<Object> args[] = {a, b};
|
| - return Execution::Call(isolate, function, undefined(), 2, args);
|
| + return Execution::Call(isolate, function, undefined(), 2, args, false);
|
| }
|
|
|
| MaybeHandle<Object> Call(Handle<Object> a, Handle<Object> b, Handle<Object> c,
|
| Handle<Object> d) {
|
| Handle<Object> args[] = {a, b, c, d};
|
| - return Execution::Call(isolate, function, undefined(), 4, args);
|
| + return Execution::Call(isolate, function, undefined(), 4, args, false);
|
| }
|
|
|
| void CheckThrows(Handle<Object> a, Handle<Object> b) {
|
|
|