Changeset 110582 in webkit for trunk/Source/JavaScriptCore/heap/MarkStack.cpp
- Timestamp:
- Mar 13, 2012, 11:10:40 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/MarkStack.cpp
r108444 r110582 487 487 } 488 488 489 void SlotVisitor::copy(void** ptr, size_t bytes)490 {491 void* newPtr = 0;492 if (!(newPtr = allocateNewSpace(*ptr, bytes)))493 return;494 495 memcpy(newPtr, *ptr, bytes);496 *ptr = newPtr;497 }498 499 489 void SlotVisitor::copyAndAppend(void** ptr, size_t bytes, JSValue* values, unsigned length) 500 490 {
Note:
See TracChangeset
for help on using the changeset viewer.