Don't allocate mspaces of less than a page.
Fixes jit tests in debug mode.
Change-Id: I34565e03683cee063e26975a461d8e75ad4a205f
diff --git a/runtime/jit/jit_code_cache.h b/runtime/jit/jit_code_cache.h
index 087d1de..74ce7b5 100644
--- a/runtime/jit/jit_code_cache.h
+++ b/runtime/jit/jit_code_cache.h
@@ -49,7 +49,7 @@
static constexpr size_t kMaxCapacity = 64 * MB;
// Put the default to a very low amount for debug builds to stress the code cache
// collection.
- static constexpr size_t kInitialCapacity = kIsDebugBuild ? 4 * KB : 64 * KB;
+ static constexpr size_t kInitialCapacity = kIsDebugBuild ? 8 * KB : 64 * KB;
// By default, do not GC until reaching 256KB.
static constexpr size_t kReservedCapacity = kInitialCapacity * 4;