Reviewers: Mads Ager, Description: Bring fix for crbug.com/39128 to trunk.
That brings r4242 to trunk. BUG=39128 Please review this at http://codereview.chromium.org/1269001 SVN Base: http://v8.googlecode.com/svn/trunk/ Affected files: M src/heap.cc M src/version.cc Index: src/heap.cc =================================================================== --- src/heap.cc (revision 4242) +++ src/heap.cc (working copy) @@ -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; Index: src/version.cc =================================================================== --- src/version.cc (revision 4242) +++ src/version.cc (working copy) @@ -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.
