Title: [175389] trunk/Source/WTF
Revision
175389
Author
[email protected]
Date
2014-10-30 15:44:04 -0700 (Thu, 30 Oct 2014)

Log Message

Enable bmalloc in 32bit builds
https://bugs.webkit.org/show_bug.cgi?id=138232

Reviewed by Andreas Kling.

Seems to work fine.

* wtf/FastMalloc.cpp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (175388 => 175389)


--- trunk/Source/WTF/ChangeLog	2014-10-30 22:37:50 UTC (rev 175388)
+++ trunk/Source/WTF/ChangeLog	2014-10-30 22:44:04 UTC (rev 175389)
@@ -1,3 +1,14 @@
+2014-10-30  Geoffrey Garen  <[email protected]>
+
+        Enable bmalloc in 32bit builds
+        https://bugs.webkit.org/show_bug.cgi?id=138232
+
+        Reviewed by Andreas Kling.
+
+        Seems to work fine.
+
+        * wtf/FastMalloc.cpp:
+
 2014-10-30  Jeffrey Pfau  <[email protected]>
 
         ASSERT(!m_deletionHasBegun) in RefCounted.h should be ASSERT_WITH_SECURITY_IMPLICATION

Modified: trunk/Source/WTF/wtf/FastMalloc.cpp (175388 => 175389)


--- trunk/Source/WTF/wtf/FastMalloc.cpp	2014-10-30 22:37:50 UTC (rev 175388)
+++ trunk/Source/WTF/wtf/FastMalloc.cpp	2014-10-30 22:44:04 UTC (rev 175389)
@@ -101,7 +101,7 @@
 #endif
 #endif
 
-#if (PLATFORM(COCOA) && (CPU(X86_64) || CPU(ARM64)))
+#if PLATFORM(COCOA)
 #define USE_BMALLOC 1
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to