| Index: src/snapshot/serialize.cc
|
| diff --git a/src/snapshot/serialize.cc b/src/snapshot/serialize.cc
|
| index c7de970361ad83216ddef6bdf880d0e66fa0d562..2179c8de6b881c2c8bf87f71fa6d7350aac6cae9 100644
|
| --- a/src/snapshot/serialize.cc
|
| +++ b/src/snapshot/serialize.cc
|
| @@ -843,7 +843,7 @@
|
| // but that may change.
|
| bool write_barrier_needed =
|
| (current_object_address != NULL && source_space != NEW_SPACE &&
|
| - source_space != CODE_SPACE);
|
| + source_space != CELL_SPACE && source_space != CODE_SPACE);
|
| while (current < limit) {
|
| byte data = source_.Get();
|
| switch (data) {
|
| @@ -952,6 +952,7 @@
|
| CASE_STATEMENT(where, how, within, OLD_SPACE) \
|
| CASE_STATEMENT(where, how, within, CODE_SPACE) \
|
| CASE_STATEMENT(where, how, within, MAP_SPACE) \
|
| + CASE_STATEMENT(where, how, within, CELL_SPACE) \
|
| CASE_STATEMENT(where, how, within, LO_SPACE) \
|
| CASE_BODY(where, how, within, kAnyOldSpace)
|
|
|
|
|