Changeset 219562 in webkit for trunk/Source/JavaScriptCore/dfg/DFGObjectAllocationSinkingPhase.cpp
- Timestamp:
- Jul 17, 2017, 9:38:10 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGObjectAllocationSinkingPhase.cpp
r219317 r219562 48 48 49 49 namespace { 50 51 NO_RETURN_DUE_TO_CRASH NEVER_INLINE void crash(const char*, int line, int)52 {53 UNUSED_PARAM(line);54 CRASH_WITH_SECURITY_IMPLICATION_AND_INFO(ObjectAllocationSinkingAssertionFailure, line);55 }56 57 #undef RELEASE_ASSERT58 #define RELEASE_ASSERT(assertion) do { \59 if (!(assertion)) { \60 WTFReportAssertionFailure(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, #assertion); \61 crash(__FILE__, __LINE__, __COUNTER__); \62 } \63 } while (0)64 50 65 51 bool verbose = false;
Note:
See TracChangeset
for help on using the changeset viewer.