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