Index: src/runtime/runtime-object.cc |
diff --git a/src/runtime/runtime-object.cc b/src/runtime/runtime-object.cc |
index 2b12c28ff53cc9150e435b31d0c452a046f26b3c..c0be628bbc0e4d4fc8b5cd7076dc1a03b5413e9e 100644 |
--- a/src/runtime/runtime-object.cc |
+++ b/src/runtime/runtime-object.cc |
@@ -963,15 +963,6 @@ RUNTIME_FUNCTION(Runtime_JSValueGetValue) { |
} |
-RUNTIME_FUNCTION(Runtime_ObjectEquals) { |
- SealHandleScope shs(isolate); |
- DCHECK(args.length() == 2); |
- CONVERT_ARG_CHECKED(Object, obj1, 0); |
- CONVERT_ARG_CHECKED(Object, obj2, 1); |
- return isolate->heap()->ToBoolean(obj1 == obj2); |
-} |
- |
- |
RUNTIME_FUNCTION(Runtime_IsJSReceiver) { |
SealHandleScope shs(isolate); |
DCHECK(args.length() == 1); |