Changeset 52090 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Dec 14, 2009, 6:13:31 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Collector.cpp
r52082 r52090 790 790 char* x = *p++; 791 791 if (isPossibleCell(x)) { 792 size_t usedPrimaryBlocks; 792 793 uintptr_t xAsBits = reinterpret_cast<uintptr_t>(x); 793 794 xAsBits &= CELL_ALIGN_MASK; … … 811 812 812 813 // Mark the primary heap 813 size_tusedPrimaryBlocks = primaryHeap.usedBlocks;814 usedPrimaryBlocks = primaryHeap.usedBlocks; 814 815 for (size_t block = 0; block < usedPrimaryBlocks; block++) { 815 816 if (primaryBlocks[block] != blockAddr)
Note:
See TracChangeset
for help on using the changeset viewer.