Back out inline string optimizations until cause of instability tracked down.
diff --git a/vm/compiler/codegen/arm/Codegen.c b/vm/compiler/codegen/arm/Codegen.c
index 8631580..59933b1 100644
--- a/vm/compiler/codegen/arm/Codegen.c
+++ b/vm/compiler/codegen/arm/Codegen.c
@@ -3709,6 +3709,10 @@
  */
 static bool genInlinedCompareTo(CompilationUnit *cUnit, MIR *mir)
 {
+#if 1
+    //Back out temporarily
+    return false;
+#endif
 #if defined(USE_GLOBAL_STRING_DEFS)
     return false;
 #else
@@ -3734,6 +3738,10 @@
 
 static bool genInlinedIndexOf(CompilationUnit *cUnit, MIR *mir, bool singleI)
 {
+#if 1
+    //Back out temporarily
+    return false;
+#endif
 #if defined(USE_GLOBAL_STRING_DEFS)
     return false;
 #else