Title: [86779] trunk/Source/_javascript_Core
Revision
86779
Author
[email protected]
Date
2011-05-18 11:28:38 -0700 (Wed, 18 May 2011)

Log Message

2011-05-18  Oliver Hunt  <[email protected]>

        Reviewed by Adam Roben.

        Disable gc validation in release builds
        https://bugs.webkit.org/show_bug.cgi?id=60680

        Add back the NDEBUG check

        * wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (86778 => 86779)


--- trunk/Source/_javascript_Core/ChangeLog	2011-05-18 18:20:55 UTC (rev 86778)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-05-18 18:28:38 UTC (rev 86779)
@@ -1,3 +1,14 @@
+2011-05-18  Oliver Hunt  <[email protected]>
+
+        Reviewed by Adam Roben.
+
+        Disable gc validation in release builds
+        https://bugs.webkit.org/show_bug.cgi?id=60680
+
+        Add back the NDEBUG check
+
+        * wtf/Platform.h:
+
 2011-05-17  Geoffrey Garen  <[email protected]>
 
         Rolled out attempts to fix EFL build because they're not enough -- the

Modified: trunk/Source/_javascript_Core/wtf/Platform.h (86778 => 86779)


--- trunk/Source/_javascript_Core/wtf/Platform.h	2011-05-18 18:20:55 UTC (rev 86778)
+++ trunk/Source/_javascript_Core/wtf/Platform.h	2011-05-18 18:28:38 UTC (rev 86779)
@@ -1214,7 +1214,10 @@
 #define WTF_USE_UNIX_DOMAIN_SOCKETS 1
 #endif
 
-/* Make this debug only again -- https://bugs.webkit.org/show_bug.cgi?id=60680 */
+#ifndef NDEBUG
+#ifndef ENABLE_GC_VALIDATION
 #define ENABLE_GC_VALIDATION 1
+#endif
+#endif
 
 #endif /* WTF_Platform_h */
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to