summaryrefslogtreecommitdiffstats
path: root/runtime/gc
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2015-04-03 19:08:10 -0700
committerMathieu Chartier <mathieuc@google.com>2015-04-03 19:08:40 -0700
commitde194bfbb212e3cb6d09e1129cbcf41872268a52 (patch)
treefbb56153d0c7081357caed39c6e034b8b0ba0e46 /runtime/gc
parent9c53fa5adb33fb853c6a8b70bacbae1e5a3218aa (diff)
downloadart-de194bfbb212e3cb6d09e1129cbcf41872268a52.zip
art-de194bfbb212e3cb6d09e1129cbcf41872268a52.tar.gz
art-de194bfbb212e3cb6d09e1129cbcf41872268a52.tar.bz2
Delete missed ClampGrowthLimit CHECK
Bug: 20043461 Change-Id: If4a0bb91c64571945756151be162f3626534781c
Diffstat (limited to 'runtime/gc')
-rw-r--r--runtime/gc/space/malloc_space.cc1
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