Changeset 2788 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 20, 2002, 2:26:35 PM (23 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r2786 r2788 1 2002-11-20 Maciej Stachowiak <[email protected]> 2 3 * kjs/collector.cpp: 4 (Collector::allocate): Clear the flags on newly allocated objects. 5 1 6 2002-11-20 Darin Adler <[email protected]> 2 7 -
trunk/JavaScriptCore/ChangeLog-2002-12-03
r2786 r2788 1 2002-11-20 Maciej Stachowiak <[email protected]> 2 3 * kjs/collector.cpp: 4 (Collector::allocate): Clear the flags on newly allocated objects. 5 1 6 2002-11-20 Darin Adler <[email protected]> 2 7 -
trunk/JavaScriptCore/ChangeLog-2003-10-25
r2786 r2788 1 2002-11-20 Maciej Stachowiak <[email protected]> 2 3 * kjs/collector.cpp: 4 (Collector::allocate): Clear the flags on newly allocated objects. 5 1 6 2002-11-20 Darin Adler <[email protected]> 2 7 -
trunk/JavaScriptCore/kjs/collector.cpp
r2783 r2788 101 101 heap.usedOversizeCells++; 102 102 heap.numLiveObjects++; 103 104 return (void *)newCell; 103 104 ((ValueImp *)(newCell))->_flags = 0; 105 return newCell; 105 106 } 106 107 … … 143 144 targetBlock->usedCells++; 144 145 heap.numLiveObjects++; 146 147 ((ValueImp *)(targetBlock->cells + cellPos))->_flags = 0; 145 148 return (void *)(targetBlock->cells + cellPos); 146 149 }
Note:
See TracChangeset
for help on using the changeset viewer.