Implement chaining up to the first 64 cases in a switch statement.
diff --git a/vm/compiler/CompilerUtility.h b/vm/compiler/CompilerUtility.h
index d5a9d84..1cfc56b 100644
--- a/vm/compiler/CompilerUtility.h
+++ b/vm/compiler/CompilerUtility.h
@@ -17,7 +17,8 @@
#ifndef _DALVIK_VM_COMPILER_UTILITY
#define _DALVIK_VM_COMPILER_UTILITY
-#define ARENA_DEFAULT_SIZE 4096
+/* Each arena page has some overhead, so take a few bytes off 8k */
+#define ARENA_DEFAULT_SIZE 8100
/* Allocate the initial memory block for arena-based allocation */
bool dvmCompilerHeapInit(void);