Index: src/runtime/runtime-collections.cc |
diff --git a/src/runtime/runtime-collections.cc b/src/runtime/runtime-collections.cc |
index 4a7248324e652b3ae74f05e838ace0a91e49f3a7..8da822817eed1114901bbd0312f6c29a52c9c0ca 100644 |
--- a/src/runtime/runtime-collections.cc |
+++ b/src/runtime/runtime-collections.cc |
@@ -40,8 +40,8 @@ RUNTIME_FUNCTION(Runtime_GenericHash) { |
HandleScope scope(isolate); |
DCHECK(args.length() == 1); |
CONVERT_ARG_HANDLE_CHECKED(Object, object, 0); |
- Handle<Smi> hash = Object::GetOrCreateHash(isolate, object); |
- return *hash; |
+ Smi* hash = Object::GetOrCreateHash(isolate, object); |
+ return hash; |
} |