Revision: 4244 Author: [email protected] Date: Wed Mar 24 02:56:30 2010 Log: Bring fix for crbug.com/39128 to trunk.
That brings r4242 to trunk. BUG=39128 Review URL: http://codereview.chromium.org/1269001 http://code.google.com/p/v8/source/detail?r=4244 Modified: /trunk/src/heap.cc /trunk/src/version.cc ======================================= --- /trunk/src/heap.cc Wed Mar 24 01:21:20 2010 +++ /trunk/src/heap.cc Wed Mar 24 02:56:30 2010 @@ -2648,7 +2648,7 @@ // Update write barrier for all fields that lie beyond the header. RecordWrites(clone_address, JSObject::kHeaderSize, - object_size - JSObject::kHeaderSize); + (object_size - JSObject::kHeaderSize) / kPointerSize); } else { clone = new_space_.AllocateRaw(object_size); if (clone->IsFailure()) return clone; ======================================= --- /trunk/src/version.cc Wed Mar 24 01:21:20 2010 +++ /trunk/src/version.cc Wed Mar 24 02:56:30 2010 @@ -35,7 +35,7 @@ #define MAJOR_VERSION 2 #define MINOR_VERSION 1 #define BUILD_NUMBER 8 -#define PATCH_LEVEL 0 +#define PATCH_LEVEL 1 #define CANDIDATE_VERSION false // Define SONAME to have the SCons build the put a specific SONAME into the -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev To unsubscribe from this group, send email to v8-dev+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.
