Title: [238477] trunk/Source/WTF
Revision
238477
Author
mcatanz...@igalia.com
Date
2018-11-25 08:22:46 -0800 (Sun, 25 Nov 2018)

Log Message

Unreviewed, rolling out r238469.

Broke the build

Reverted changeset:

"CRASH() should call abort() except on Darwin and in developer
builds"
https://bugs.webkit.org/show_bug.cgi?id=184408
https://trac.webkit.org/changeset/238469

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (238476 => 238477)


--- trunk/Source/WTF/ChangeLog	2018-11-25 12:19:02 UTC (rev 238476)
+++ trunk/Source/WTF/ChangeLog	2018-11-25 16:22:46 UTC (rev 238477)
@@ -1,3 +1,16 @@
+2018-11-25  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        Unreviewed, rolling out r238469.
+
+        Broke the build
+
+        Reverted changeset:
+
+        "CRASH() should call abort() except on Darwin and in developer
+        builds"
+        https://bugs.webkit.org/show_bug.cgi?id=184408
+        https://trac.webkit.org/changeset/238469
+
 2018-11-24  Andy Estes  <aes...@apple.com>
 
         [Cocoa] SOFT_LINK_CLASS_FOR_{HEADER,SOURCE} should generate a more concise getter function

Modified: trunk/Source/WTF/wtf/Assertions.h (238476 => 238477)


--- trunk/Source/WTF/wtf/Assertions.h	2018-11-25 12:19:02 UTC (rev 238476)
+++ trunk/Source/WTF/wtf/Assertions.h	2018-11-25 16:22:46 UTC (rev 238477)
@@ -44,7 +44,6 @@
 #include <stdarg.h>
 #include <stdbool.h>
 #include <stddef.h>
-#include <stdlib.h>
 #include <wtf/ExportMacros.h>
 
 #if USE(OS_LOG)
@@ -240,8 +239,6 @@
     WTFBreakpointTrapUnderConstexprContext(); \
     __builtin_unreachable(); \
 } while (0)
-#elif !ENABLE(DEVELOPER_MODE) && !OS(DARWIN)
-#define CRASH() abort()
 #else
 #define CRASH() WTFCrash()
 #define CRASH_UNDER_CONSTEXPR_CONTEXT() WTFCrash()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to