<https://webkit.org/b/124912>
Shave 8 bytes off of JSC::Structure by jamming m_staticFunctionReified
into the bitfield just above.
Reviewed by Antti Koivisto.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@159814
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-11-27 Andreas Kling <akling@apple.com>
+
+ Structure::m_staticFunctionReified should be a single bit.
+ <https://webkit.org/b/124912>
+
+ Shave 8 bytes off of JSC::Structure by jamming m_staticFunctionReified
+ into the bitfield just above.
+
+ Reviewed by Antti Koivisto.
+
2013-11-27 Andreas Kling <akling@apple.com>
JSActivation constructor should use NotNull placement new.
unsigned m_specificFunctionThrashCount : 2;
unsigned m_preventExtensions : 1;
unsigned m_didTransition : 1;
- unsigned m_staticFunctionReified;
+ unsigned m_staticFunctionReified : 1;
};
} // namespace JSC