Bug 843999 - Shrink the property cache. r=bhackett.

--HG--
extra : rebase_source : a05435c289528619856b70665453703a628c3790
This commit is contained in:
Nicholas Nethercote 2013-02-24 14:15:23 -08:00
parent cd3ba96b65
commit f759056e02

View File

@ -84,7 +84,7 @@ class PropertyCache
{
private:
enum {
SIZE_LOG2 = 12,
SIZE_LOG2 = 8,
SIZE = JS_BIT(SIZE_LOG2),
MASK = JS_BITMASK(SIZE_LOG2)
};