Bug 850749 - Make Cell::isTenured use the new IsInsideNursery; r=billm

--HG--
extra : rebase_source : a73a59b4a6880f9821ee453cfa838b7dd0ca952d
This commit is contained in:
Terrence Cole 2013-03-13 10:22:35 -07:00
Родитель 4226f18fe6
Коммит a9ab4f46ac
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -286,7 +286,7 @@ ArenaHeader::checkSynchronizedWithFreeList() const
bool
js::gc::Cell::isTenured() const
{
return true;
return !IsInsideNursery(runtime(), this);
}
#endif