Bug 1565631 - Add an early return to Nursery::shouldCollect() r=sfink

Differential Revision: https://phabricator.services.mozilla.com/D38030

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Paul Bone 2019-07-16 00:52:13 +00:00
Родитель d046711c81
Коммит e183715540
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -816,6 +816,10 @@ inline void js::Nursery::endProfile(ProfileKey key) {
}
bool js::Nursery::shouldCollect() const {
if (isEmpty()) {
return false;
}
if (minorGCRequested()) {
return true;
}