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

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

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

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