Title: [164590] trunk/Source/WTF
Revision
164590
Author
[email protected]
Date
2014-02-24 10:15:47 -0800 (Mon, 24 Feb 2014)

Log Message

Turn GenGC on for 32-bit systems
https://bugs.webkit.org/show_bug.cgi?id=128824

Reviewed by Geoffrey Garen.

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (164589 => 164590)


--- trunk/Source/WTF/ChangeLog	2014-02-24 17:07:22 UTC (rev 164589)
+++ trunk/Source/WTF/ChangeLog	2014-02-24 18:15:47 UTC (rev 164590)
@@ -1,3 +1,12 @@
+2014-02-24  Mark Hahnenberg  <[email protected]>
+
+        Turn GenGC on for 32-bit systems
+        https://bugs.webkit.org/show_bug.cgi?id=128824
+
+        Reviewed by Geoffrey Garen.
+
+        * wtf/Platform.h:
+
 2014-02-21  Benjamin Poulain  <[email protected]>
 
         jsDocumentPrototypeFunctionGetElementById should not create an AtomicString for the function argument

Modified: trunk/Source/WTF/wtf/Platform.h (164589 => 164590)


--- trunk/Source/WTF/wtf/Platform.h	2014-02-24 17:07:22 UTC (rev 164589)
+++ trunk/Source/WTF/wtf/Platform.h	2014-02-24 18:15:47 UTC (rev 164590)
@@ -740,7 +740,7 @@
 
 /* Generational collector for JSC */
 #if !defined(ENABLE_GGC)
-#if CPU(X86_64)
+#if CPU(X86_64) || CPU(X86) || CPU(ARM_THUMB2)
 #define ENABLE_GGC 1
 #else
 #define ENABLE_GGC 0
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to