Index: src/runtime/runtime-function.cc |
diff --git a/src/runtime/runtime-function.cc b/src/runtime/runtime-function.cc |
index 53518d74abea597c6c4cc68355db2447371ff630..27e401a7b5e8208e237215aa07691f6cbf8ad532 100644 |
--- a/src/runtime/runtime-function.cc |
+++ b/src/runtime/runtime-function.cc |
@@ -253,7 +253,7 @@ RUNTIME_FUNCTION(Runtime_Call) { |
HandleScope scope(isolate); |
DCHECK_LE(2, args.length()); |
int const argc = args.length() - 2; |
- CONVERT_ARG_HANDLE_CHECKED(JSReceiver, target, 0); |
+ CONVERT_ARG_HANDLE_CHECKED(Object, target, 0); |
CONVERT_ARG_HANDLE_CHECKED(Object, receiver, 1); |
ScopedVector<Handle<Object>> argv(argc); |
for (int i = 0; i < argc; ++i) { |