Bug 1440914 - Remove tenured string restriction from AssertShouldMarkInZone, r=jonco

--HG--
extra : rebase_source : c50b0b08dfb16dc3cfc9e4224733955b270f90f6
This commit is contained in:
Steve Fink 2018-03-02 11:35:04 -08:00
Родитель c4946fe969
Коммит f5167624f5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -352,7 +352,7 @@ static void
AssertShouldMarkInZone(JSString* str)
{
#ifdef DEBUG
Zone* zone = str->asTenured().zone();
Zone* zone = str->zone();
MOZ_ASSERT(zone->shouldMarkInZone() || zone->isAtomsZone());
#endif
}