Implement chaining up to the first 64 cases in a switch statement.
diff --git a/vm/compiler/Utility.c b/vm/compiler/Utility.c
index cbfea16..77a2397 100644
--- a/vm/compiler/Utility.c
+++ b/vm/compiler/Utility.c
@@ -69,7 +69,7 @@
         if (size > ARENA_DEFAULT_SIZE) {
             LOGE("Requesting %d bytes which exceed the maximal size allowed\n",
                  size);
-            return NULL;
+            dvmAbort();
         }
         /* Time to allocate a new arena */
         ArenaMemBlock *newArena = (ArenaMemBlock *)