diff options
-rw-r--r-- | runtime/gc/space/region_space.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/gc/space/region_space.cc b/runtime/gc/space/region_space.cc index 2d71294daa..e24741a4a6 100644 --- a/runtime/gc/space/region_space.cc +++ b/runtime/gc/space/region_space.cc @@ -338,8 +338,7 @@ bool RegionSpace::AllocNewTlab(Thread* self) { if (r->IsFree()) { r->Unfree(time_); ++num_non_free_regions_; - // TODO: this is buggy. Debug it. - // r->SetNewlyAllocated(); + r->SetNewlyAllocated(); r->SetTop(r->End()); r->is_a_tlab_ = true; r->thread_ = self; |