Bug 1515648 - Part 5: fix in EnvironmentObject.cpp. r=jonco

This commit is contained in:
Yoshi Cheng-Hao Huang 2018-12-20 15:48:21 +01:00
Родитель ca060916c7
Коммит f0323a414d
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -2578,7 +2578,8 @@ void DebugEnvironments::checkHashTablesAfterMovingGC() {
for (MissingEnvironmentMap::Range r = missingEnvs.all(); !r.empty();
r.popFront()) {
CheckGCThingAfterMovingGC(r.front().key().scope());
CheckGCThingAfterMovingGC(r.front().value().get());
// Use unbarrieredGet() to prevent triggering read barrier while collecting.
CheckGCThingAfterMovingGC(r.front().value().unbarrieredGet());
}
for (LiveEnvironmentMap::Range r = liveEnvs.all(); !r.empty(); r.popFront()) {
CheckGCThingAfterMovingGC(r.front().key());