diff options
author | Mathieu Chartier <mathieuc@google.com> | 2015-04-03 19:08:10 -0700 |
---|---|---|
committer | Mathieu Chartier <mathieuc@google.com> | 2015-04-03 19:08:40 -0700 |
commit | de194bfbb212e3cb6d09e1129cbcf41872268a52 (patch) | |
tree | fbb56153d0c7081357caed39c6e034b8b0ba0e46 | |
parent | 9c53fa5adb33fb853c6a8b70bacbae1e5a3218aa (diff) | |
download | art-de194bfbb212e3cb6d09e1129cbcf41872268a52.zip art-de194bfbb212e3cb6d09e1129cbcf41872268a52.tar.gz art-de194bfbb212e3cb6d09e1129cbcf41872268a52.tar.bz2 |
Delete missed ClampGrowthLimit CHECK
Bug: 20043461
Change-Id: If4a0bb91c64571945756151be162f3626534781c
-rw-r--r-- | runtime/gc/space/malloc_space.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/gc/space/malloc_space.cc b/runtime/gc/space/malloc_space.cc index b09de6f..9195b06 100644 --- a/runtime/gc/space/malloc_space.cc +++ b/runtime/gc/space/malloc_space.cc @@ -259,7 +259,6 @@ void MallocSpace::ClampGrowthLimit() { } GetMemMap()->SetSize(new_capacity); limit_ = Begin() + new_capacity; - CHECK(temp_bitmap_.get() == nullptr); } } // namespace space |