| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 1da76c685c210a972334881fa70128f45a241c3b..17c648a536011dd9bdd507947ddd1e6eed220a78 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -4027,10 +4027,10 @@ MaybeObject* JSObject::SetIdentityHash(Smi* hash, CreationFlag flag) {
|
|
|
|
|
| int JSObject::GetIdentityHash(Handle<JSObject> obj) {
|
| - CALL_AND_RETRY(obj->GetIsolate(),
|
| - obj->GetIdentityHash(ALLOW_CREATION),
|
| - return Smi::cast(__object__)->value(),
|
| - return 0);
|
| + CALL_AND_RETRY_OR_DIE(obj->GetIsolate(),
|
| + obj->GetIdentityHash(ALLOW_CREATION),
|
| + return Smi::cast(__object__)->value(),
|
| + return 0);
|
| }
|
|
|
|
|
|
|