summaryrefslogtreecommitdiffstats
path: root/runtime/gc/space/large_object_space.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/gc/space/large_object_space.h')
-rw-r--r--runtime/gc/space/large_object_space.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/gc/space/large_object_space.h b/runtime/gc/space/large_object_space.h
index eb01325..18e518f 100644
--- a/runtime/gc/space/large_object_space.h
+++ b/runtime/gc/space/large_object_space.h
@@ -75,6 +75,10 @@ class LargeObjectSpace : public DiscontinuousSpace, public AllocSpace {
void Sweep(bool swap_bitmaps, size_t* freed_objects, size_t* freed_bytes);
+ virtual bool CanMoveObjects() const OVERRIDE {
+ return false;
+ }
+
protected:
explicit LargeObjectSpace(const std::string& name);