Index: src/snapshot/serialize.cc |
diff --git a/src/snapshot/serialize.cc b/src/snapshot/serialize.cc |
index 2179c8de6b881c2c8bf87f71fa6d7350aac6cae9..c7de970361ad83216ddef6bdf880d0e66fa0d562 100644 |
--- a/src/snapshot/serialize.cc |
+++ b/src/snapshot/serialize.cc |
@@ -843,7 +843,7 @@ void Deserializer::ReadData(Object** current, Object** limit, int source_space, |
// but that may change. |
bool write_barrier_needed = |
(current_object_address != NULL && source_space != NEW_SPACE && |
- source_space != CELL_SPACE && source_space != CODE_SPACE); |
+ source_space != CODE_SPACE); |
while (current < limit) { |
byte data = source_.Get(); |
switch (data) { |
@@ -952,7 +952,6 @@ void Deserializer::ReadData(Object** current, Object** limit, int source_space, |
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) |