| Index: src/compiler/zone-stats.cc
|
| diff --git a/src/compiler/zone-stats.cc b/src/compiler/zone-stats.cc
|
| index 62241a494690f453e043b4d02a4435dc1aded83a..8942df5555c55542530cc250f12f5db8bac79076 100644
|
| --- a/src/compiler/zone-stats.cc
|
| +++ b/src/compiler/zone-stats.cc
|
| @@ -84,8 +84,8 @@ size_t ZoneStats::GetTotalAllocatedBytes() {
|
| return total_deleted_bytes_ + GetCurrentAllocatedBytes();
|
| }
|
|
|
| -Zone* ZoneStats::NewEmptyZone() {
|
| - Zone* zone = new Zone(allocator_);
|
| +Zone* ZoneStats::NewEmptyZone(const char* zone_name) {
|
| + Zone* zone = new Zone(allocator_, zone_name);
|
| zones_.push_back(zone);
|
| return zone;
|
| }
|
|
|