Index: src/runtime/runtime-object.cc |
diff --git a/src/runtime/runtime-object.cc b/src/runtime/runtime-object.cc |
index 2098c1cea933edce48ef63ed72116e377eace8b1..f1d4f1dc6450bb8dafda8c5bc4d4f78360d9138b 100644 |
--- a/src/runtime/runtime-object.cc |
+++ b/src/runtime/runtime-object.cc |
@@ -1458,8 +1458,7 @@ RUNTIME_FUNCTION(Runtime_ToNumber) { |
DCHECK_EQ(1, args.length()); |
CONVERT_ARG_HANDLE_CHECKED(Object, input, 0); |
Handle<Object> result; |
- ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result, |
- Object::ToNumber(isolate, input)); |
+ ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result, Object::ToNumber(input)); |
return *result; |
} |