Commit 059eece4 authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

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
parent b6a9cc1c
......@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment