Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3789)

Unified Diff: Source/platform/heap/Heap.h

Issue 808803007: Allocate GCInfo descriptor table during Oilpan initialization. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/platform/heap/Heap.cpp » ('j') | Source/platform/heap/Heap.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Heap.h
diff --git a/Source/platform/heap/Heap.h b/Source/platform/heap/Heap.h
index 6eb0724132dbd0d3dd3861571cf0e185e85ba5b3..3b1b96eef633633de80dc8183f7c7e4ebabf7e49 100644
--- a/Source/platform/heap/Heap.h
+++ b/Source/platform/heap/Heap.h
@@ -934,7 +934,7 @@ public:
{
ASSERT(gcInfoIndex >= 1);
ASSERT(gcInfoIndex < gcInfoIndexMax);
- const GCInfo* info = s_gcInfoMap[gcInfoIndex];
+ const GCInfo* info = s_gcInfoTable[gcInfoIndex];
haraken 2015/01/06 08:08:04 Add ASSERT(s_gcInfoTable)
sof 2015/01/06 08:19:18 Done.
ASSERT(info);
return info;
}
« no previous file with comments | « no previous file | Source/platform/heap/Heap.cpp » ('j') | Source/platform/heap/Heap.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698