Index: src/runtime/runtime-object.cc |
diff --git a/src/runtime/runtime-object.cc b/src/runtime/runtime-object.cc |
index c509705107ca06eea45fb41e308b1379a239f5ae..067ab86f161c9f1635e4307198a04fb79441df56 100644 |
--- a/src/runtime/runtime-object.cc |
+++ b/src/runtime/runtime-object.cc |
@@ -1263,7 +1263,7 @@ RUNTIME_FUNCTION(Runtime_IsSpecObject) { |
SealHandleScope shs(isolate); |
DCHECK(args.length() == 1); |
CONVERT_ARG_CHECKED(Object, obj, 0); |
- return isolate->heap()->ToBoolean(obj->IsSpecObject()); |
+ return isolate->heap()->ToBoolean(obj->IsJSReceiver()); |
} |