Changeset 38665 in webkit for trunk/JavaScriptCore/wtf/Assertions.h
- Timestamp:
- Nov 21, 2008, 10:49:03 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/Assertions.h
r35900 r38665 51 51 #endif 52 52 53 #include <stdlib.h> 54 53 55 #ifdef NDEBUG 54 56 #define ASSERTIONS_DISABLED_DEFAULT 1 … … 121 123 122 124 #ifndef CRASH 123 #define CRASH() *(int *)(uintptr_t)0xbbadbeef = 0 125 #define CRASH() do { \ 126 *(int *)(uintptr_t)0xbbadbeef = 0; \ 127 abort(); \ 128 } while (false) 124 129 #endif 125 130
Note:
See TracChangeset
for help on using the changeset viewer.