diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2017-06-27 00:00:57 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-02-03 17:51:53 +0100 |
commit | f7352531b6f7442278bb8a7b95385db05ba4ae3c (patch) | |
tree | bb971fe38dee30dbd3201e87a144d6c205ebe979 | |
parent | d184e493d92de8a99adb83a0fe34f90f576b064c (diff) | |
download | uxp-f7352531b6f7442278bb8a7b95385db05ba4ae3c.tar.gz |
Remove runDebugGC() stub
-rw-r--r-- | js/src/gc/GCRuntime.h | 1 | ||||
-rw-r--r-- | js/src/jsgc.cpp | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/js/src/gc/GCRuntime.h b/js/src/gc/GCRuntime.h index ae4f03cea9..19737c9ee5 100644 --- a/js/src/gc/GCRuntime.h +++ b/js/src/gc/GCRuntime.h @@ -633,7 +633,6 @@ class GCRuntime MOZ_RELEASE_ASSERT(triggerGC(JS::gcreason::ALLOC_TRIGGER)); } - void runDebugGC(); inline void poke(); enum TraceOrMarkRuntime { diff --git a/js/src/jsgc.cpp b/js/src/jsgc.cpp index d61df8fe35..45301dac87 100644 --- a/js/src/jsgc.cpp +++ b/js/src/jsgc.cpp @@ -6179,11 +6179,6 @@ gc::MergeCompartments(JSCompartment* source, JSCompartment* target) } void -GCRuntime::runDebugGC() -{ -} - -void GCRuntime::setFullCompartmentChecks(bool enabled) { MOZ_ASSERT(!rt->isHeapMajorCollecting()); |