mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1242262 - Remove the last vestiges of JS_GC_MARKING_VALIDATION (it's a GC Zeal mode now). r=terrence
This commit is contained in:
parent
76e042fcd3
commit
d6ca35700a
@ -18,11 +18,6 @@
|
||||
#include "gc/StoreBuffer.h"
|
||||
#include "gc/Tracer.h"
|
||||
|
||||
/* Perform validation of incremental marking in debug builds but not on B2G. */
|
||||
#if defined(DEBUG) && !defined(MOZ_B2G)
|
||||
#define JS_GC_MARKING_VALIDATION
|
||||
#endif
|
||||
|
||||
namespace js {
|
||||
|
||||
class AutoLockGC;
|
||||
@ -1182,7 +1177,7 @@ class GCRuntime
|
||||
js::gc::ZoneList zonesToMaybeCompact;
|
||||
ArenaHeader* relocatedArenasToRelease;
|
||||
|
||||
#ifdef JS_GC_MARKING_VALIDATION
|
||||
#ifdef JS_GC_ZEAL
|
||||
js::gc::MarkingValidator* markingValidator;
|
||||
#endif
|
||||
|
||||
|
@ -1150,7 +1150,7 @@ GCRuntime::GCRuntime(JSRuntime* rt) :
|
||||
arenasAllocatedDuringSweep(nullptr),
|
||||
startedCompacting(false),
|
||||
relocatedArenasToRelease(nullptr),
|
||||
#ifdef JS_GC_MARKING_VALIDATION
|
||||
#ifdef JS_GC_ZEAL
|
||||
markingValidator(nullptr),
|
||||
#endif
|
||||
interFrameGC(false),
|
||||
|
Loading…
Reference in New Issue
Block a user