Reviewers: Lasse Reichstein, Description: Fix 9763 for real.
Please review this at http://codereview.chromium.org/8382032/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/serialize.cc Index: src/serialize.cc =================================================================== --- src/serialize.cc (revision 9765) +++ src/serialize.cc (working copy) @@ -762,6 +762,7 @@ bool write_barrier_needed = (current_object_address != NULL && source_space != NEW_SPACE && source_space != CELL_SPACE && + source_space != CODE_SPACE && source_space != OLD_DATA_SPACE); while (current < limit) { int data = source_->Get(); -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
