Fix compile error on gcc-4.5 bug 963

Review URL: http://codereview.chromium.org/5642004

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5942 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
erik.corry@gmail.com 2010-12-08 08:31:10 +00:00
parent b6a9cc1c1c
commit 059eece44c

View File

@ -917,7 +917,7 @@ AtomicWord* MemoryAllocator::AllocatedChunksFinder(
}
more_fine_grained_table = new AtomicWord[words_needed];
for (int i = 0; i < words_needed; i++) {
more_fine_grained_table[i] = NULL;
more_fine_grained_table[i] = kUnusedChunkTableEntry;
}
Release_Store(&table[index],
reinterpret_cast<AtomicWord>(more_fine_grained_table));