summaryrefslogtreecommitdiffstats
path: root/js/src/jsgc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jsgc.cpp')
-rw-r--r--js/src/jsgc.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/js/src/jsgc.cpp b/js/src/jsgc.cpp
index f528b2d70..194468c5d 100644
--- a/js/src/jsgc.cpp
+++ b/js/src/jsgc.cpp
@@ -1527,8 +1527,9 @@ inline void
ArenaLists::prepareForIncrementalGC()
{
purge();
- for (auto i : AllAllocKinds())
+ for (auto i : AllAllocKinds()) {
arenaLists[i].moveCursorToEnd();
+ }
}
/* Compacting GC */
@@ -3577,7 +3578,7 @@ ShouldCollectZone(Zone* zone, JS::gcreason::Reason reason)
if (reason != JS::gcreason::COMPARTMENT_REVIVED)
return zone->isGCScheduled();
- // If we are repeating a GC becuase we noticed dead compartments haven't
+ // If we are repeating a GC because we noticed dead compartments haven't
// been collected, then only collect zones containing those compartments.
for (CompartmentsInZoneIter comp(zone); !comp.done(); comp.next()) {
if (comp->scheduledForDestruction)