| Index: src/lithium-allocator.cc
 | 
| ===================================================================
 | 
| --- src/lithium-allocator.cc	(revision 10788)
 | 
| +++ src/lithium-allocator.cc	(working copy)
 | 
| @@ -584,7 +584,7 @@
 | 
|  BitVector* LAllocator::ComputeLiveOut(HBasicBlock* block) {
 | 
|    // Compute live out for the given block, except not including backward
 | 
|    // successor edges.
 | 
| -  BitVector* live_out = new(zone_) BitVector(next_virtual_register_);
 | 
| +  BitVector* live_out = new(zone_) BitVector(next_virtual_register_, zone_);
 | 
|  
 | 
|    // Process all successor blocks.
 | 
|    for (HSuccessorIterator it(block->end()); !it.Done(); it.Advance()) {
 | 
| 
 |