Changeset 238477 in webkit
- Timestamp:
- Nov 25, 2018, 8:22:46 AM (8 years ago)
- Location:
- trunk/Source/WTF
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
wtf/Assertions.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r238470 r238477 1 2018-11-25 Michael Catanzaro <mcatanzaro@igalia.com> 2 3 Unreviewed, rolling out r238469. 4 5 Broke the build 6 7 Reverted changeset: 8 9 "CRASH() should call abort() except on Darwin and in developer 10 builds" 11 https://bugs.webkit.org/show_bug.cgi?id=184408 12 https://trac.webkit.org/changeset/238469 13 1 14 2018-11-24 Andy Estes <aestes@apple.com> 2 15 -
trunk/Source/WTF/wtf/Assertions.h
r238469 r238477 45 45 #include <stdbool.h> 46 46 #include <stddef.h> 47 #include <stdlib.h>48 47 #include <wtf/ExportMacros.h> 49 48 … … 241 240 __builtin_unreachable(); \ 242 241 } while (0) 243 #elif !ENABLE(DEVELOPER_MODE) && !OS(DARWIN)244 #define CRASH() abort()245 242 #else 246 243 #define CRASH() WTFCrash()
Note:
See TracChangeset
for help on using the changeset viewer.