| Index: src/runtime/runtime-function.cc
|
| diff --git a/src/runtime/runtime-function.cc b/src/runtime/runtime-function.cc
|
| index e8b160d1c529353134ad2a045faec0d5d1f040a5..c211e1895f742408281a18f4de7db6b77bcdd202 100644
|
| --- a/src/runtime/runtime-function.cc
|
| +++ b/src/runtime/runtime-function.cc
|
| @@ -626,13 +626,13 @@ RUNTIME_FUNCTION(Runtime_GetConstructorDelegate) {
|
| }
|
|
|
|
|
| -RUNTIME_FUNCTION(RuntimeReference_CallFunction) {
|
| +RUNTIME_FUNCTION(Runtime_CallFunction) {
|
| SealHandleScope shs(isolate);
|
| return __RT_impl_Runtime_Call(args, isolate);
|
| }
|
|
|
|
|
| -RUNTIME_FUNCTION(RuntimeReference_IsConstructCall) {
|
| +RUNTIME_FUNCTION(Runtime_IsConstructCall) {
|
| SealHandleScope shs(isolate);
|
| DCHECK(args.length() == 0);
|
| JavaScriptFrameIterator it(isolate);
|
| @@ -641,7 +641,7 @@ RUNTIME_FUNCTION(RuntimeReference_IsConstructCall) {
|
| }
|
|
|
|
|
| -RUNTIME_FUNCTION(RuntimeReference_IsFunction) {
|
| +RUNTIME_FUNCTION(Runtime_IsFunction) {
|
| SealHandleScope shs(isolate);
|
| DCHECK(args.length() == 1);
|
| CONVERT_ARG_CHECKED(Object, obj, 0);
|
|
|