Merge "Move from code field routines to runtime support." into dalvik-dev
diff --git a/src/compiler/Frontend.cc b/src/compiler/Frontend.cc
index 429d155..11b2783 100644
--- a/src/compiler/Frontend.cc
+++ b/src/compiler/Frontend.cc
@@ -23,13 +23,12 @@
 
 /* Default optimizer/debug setting for the compiler. */
 uint32_t compilerOptimizerDisableFlags = 0 | // Disable specific optimizations
-     // TODO: enable all of these by default in ToT
-     (1 << kLoadStoreElimination) |
-     (1 << kLoadHoisting) |
-     (1 << kSuppressLoads) |
-     (1 << kNullCheckElimination) |
-     (1 << kPromoteRegs) |
-     (1 << kTrackLiveTemps) |
+     //(1 << kLoadStoreElimination) |
+     //(1 << kLoadHoisting) |
+     //(1 << kSuppressLoads) |
+     //(1 << kNullCheckElimination) |
+     //(1 << kPromoteRegs) |
+     //(1 << kTrackLiveTemps) |
      0;
 
 uint32_t compilerDebugFlags = 0 |     // Enable debug/testing modes