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

Unified Diff: Source/platform/heap/Visitor.cpp

Issue 808803007: Allocate GCInfo descriptor table during Oilpan initialization. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: delete[] mismatch 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 | « Source/platform/heap/Visitor.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Visitor.cpp
diff --git a/Source/platform/heap/Visitor.cpp b/Source/platform/heap/Visitor.cpp
index bd7ed426038300464578d028e5a39dddb4a9b167..2119b23af627afbe162eb31f86cddbf1a4864682 100644
--- a/Source/platform/heap/Visitor.cpp
+++ b/Source/platform/heap/Visitor.cpp
@@ -41,7 +41,7 @@ namespace blink {
// RETURN_GCINFO_INDEX) returns an incremented value of s_gcInfoIndex,
// the initial value of s_gcInfoIndex should be set to 0.
int s_gcInfoIndex = 0;
-const GCInfo* s_gcInfoMap[gcInfoIndexMax] = { 0 };
+GCInfo const** s_gcInfoTable = nullptr;
int Visitor::m_traceDepth = 0;
« no previous file with comments | « Source/platform/heap/Visitor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698