Changeset 38672 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Nov 21, 2008, 12:09:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Collector.cpp
r38665 r38672 284 284 ASSERT(heapType == PrimaryHeap || heap.extraCost == 0); 285 285 // FIXME: If another global variable access here doesn't hurt performance 286 // too much, we could CRASH() in NDEBUG builds, which could help ensure we286 // too much, we could abort() in NDEBUG builds, which could help ensure we 287 287 // don't spend any time debugging cases where we allocate inside an object's 288 288 // deallocation code. … … 975 975 ASSERT((primaryHeap.operationInProgress == NoOperation) | (numberHeap.operationInProgress == NoOperation)); 976 976 if ((primaryHeap.operationInProgress != NoOperation) | (numberHeap.operationInProgress != NoOperation)) 977 CRASH();977 abort(); 978 978 979 979 JAVASCRIPTCORE_GC_BEGIN();
Note:
See TracChangeset
for help on using the changeset viewer.