summaryrefslogtreecommitdiffstats
path: root/runtime/gc
diff options
context:
space:
mode:
authorHiroshi Yamauchi <yamauchi@google.com>2014-03-20 13:31:37 -0700
committerHiroshi Yamauchi <yamauchi@google.com>2014-03-20 13:33:02 -0700
commitd387f7ee7283155cfc3a7555acd94eb1f3c4372a (patch)
tree1557ec5181bac953aaadc0b319c7e1581509ee89 /runtime/gc
parentf2a0d91c9307819c070133e02ee04505b268b75d (diff)
downloadart-d387f7ee7283155cfc3a7555acd94eb1f3c4372a.zip
art-d387f7ee7283155cfc3a7555acd94eb1f3c4372a.tar.gz
art-d387f7ee7283155cfc3a7555acd94eb1f3c4372a.tar.bz2
Fix a libartd.so boot DCHECK failure with the GSS collector.
Bug: 11650816 Change-Id: Ibbdf1e66d2c1afe92351ee7a0ca84702bd07035d
Diffstat (limited to 'runtime/gc')
-rw-r--r--runtime/gc/accounting/remembered_set.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/accounting/remembered_set.cc b/runtime/gc/accounting/remembered_set.cc
index e6508dc..72b9283 100644
--- a/runtime/gc/accounting/remembered_set.cc
+++ b/runtime/gc/accounting/remembered_set.cc
@@ -155,7 +155,7 @@ void RememberedSet::AssertAllDirtyCardsAreWithinSpace() const {
for (const byte* card_addr : dirty_cards_) {
auto start = reinterpret_cast<byte*>(card_table->AddrFromCard(card_addr));
auto end = start + CardTable::kCardSize;
- DCHECK(space_->Begin() <= start && end <= space_->End());
+ DCHECK(space_->Begin() <= start && end <= space_->Limit());
}
}