Enable Generational GC on ARM Traditional
Created attachment 237679 [details] Patch
Comment on attachment 237679 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=237679&action=review > Source/WTF/wtf/Platform.h:761 > -#if CPU(X86_64) || CPU(X86) || CPU(ARM_THUMB2) || CPU(ARM64) > +#if CPU(X86_64) || CPU(X86) || CPU(ARM_THUMB2) || CPU(ARM64) || CPU(ARM) CPU(ARM_THUMB2) is a subset of CPU(ARM), so I prefer simple use CPU(ARM) instead of CPU(ARM_THUMB2): #if CPU(X86_64) || CPU(X86) || CPU(ARM) || CPU(ARM64)
Created attachment 237680 [details] Patch
Comment on attachment 237680 [details] Patch Clearing flags on attachment: 237680 Committed r173310: <http://trac.webkit.org/changeset/173310>
All reviewed patches have been landed. Closing bug.