Commit 51839333 authored by hpayer's avatar hpayer Committed by Commit bot

[heap] Remove debug code in MoveEntriesToRememberedSet.

BUG=chromium:673308,chromium:689555

Review-Url: https://codereview.chromium.org/2694763002
Cr-Commit-Position: refs/heads/master@{#43160}
parent 866d5b2d
......@@ -105,10 +105,6 @@ void StoreBuffer::MoveEntriesToRememberedSet(int index) {
DCHECK_LT(index, kStoreBuffers);
for (Address* current = start_[index]; current < lazy_top_[index];
current++) {
CHECK(!heap_->code_space()->Contains(*current));
CHECK(heap_->old_space()->Contains(*current) ||
heap_->map_space()->Contains(*current) ||
heap_->lo_space()->ContainsSlow(*current));
Address addr = *current;
Page* page = Page::FromAnyPointerAddress(heap_, addr);
if (IsDeletionAddress(addr)) {
......
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