| Index: src/profile-generator-inl.h
|
| diff --git a/src/profile-generator-inl.h b/src/profile-generator-inl.h
|
| index 7a70b013bb2b861c2529563e782ace4f95eb3fbd..d967ed3897a6a462b91e550cad6419356d568292 100644
|
| --- a/src/profile-generator-inl.h
|
| +++ b/src/profile-generator-inl.h
|
| @@ -95,7 +95,7 @@ CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) {
|
| }
|
|
|
|
|
| -uint64_t HeapObjectsMap::GetNthGcSubrootId(int delta) {
|
| +SnapshotObjectId HeapObjectsMap::GetNthGcSubrootId(int delta) {
|
| return kGcRootsFirstSubrootId + delta * kObjectIdStep;
|
| }
|
|
|
| @@ -115,10 +115,10 @@ int V8HeapExplorer::GetGcSubrootOrder(HeapObject* subroot) {
|
| }
|
|
|
|
|
| -uint64_t HeapEntry::id() {
|
| +SnapshotObjectId HeapEntry::id() {
|
| union {
|
| Id stored_id;
|
| - uint64_t returned_id;
|
| + SnapshotObjectId returned_id;
|
| } id_adaptor = {id_};
|
| return id_adaptor.returned_id;
|
| }
|
|
|