| Index: src/compiler.cc
|
| diff --git a/src/compiler.cc b/src/compiler.cc
|
| index 86dbe8fcf0aa13910140a038a3158eba53ddffa4..73f601a566d56b98e015df557de2a164871586eb 100644
|
| --- a/src/compiler.cc
|
| +++ b/src/compiler.cc
|
| @@ -1565,7 +1565,7 @@ CompilationPhase::CompilationPhase(const char* name, CompilationInfo* info)
|
|
|
| CompilationPhase::~CompilationPhase() {
|
| if (FLAG_hydrogen_stats) {
|
| - unsigned size = zone()->allocation_size();
|
| + size_t size = zone()->allocation_size();
|
| size += info_->zone()->allocation_size() - info_zone_start_allocation_size_;
|
| isolate()->GetHStatistics()->SaveTiming(name_, timer_.Elapsed(), size);
|
| }
|
|
|