Index: runtime/vm/flag_list.h |
diff --git a/runtime/vm/flag_list.h b/runtime/vm/flag_list.h |
index 65f5b4944855e37ed101607a5ec16208377b86d8..960d879481c2fc6929ca0abb39daceb9317a2138 100644 |
--- a/runtime/vm/flag_list.h |
+++ b/runtime/vm/flag_list.h |
@@ -25,12 +25,6 @@ |
#define USING_MULTICORE false |
#endif |
-#if defined(DART_PRECOMPILER) |
-#define USING_PRECOMPILER true |
-#else |
-#define USING_PRECOMPILER false |
-#endif |
- |
// List of all flags in the VM. |
// Flags can be one of three categories: |
// * P roduct flags: Can be set in any of the deployment modes, including in |
@@ -176,7 +170,7 @@ |
"Use class hierarchy analysis even if it can cause deoptimization.") \ |
P(use_field_guards, bool, !USING_DBC, \ |
"Use field guards and track field types") \ |
- C(use_osr, false, !USING_PRECOMPILER, bool, !USING_PRECOMPILER, "Use OSR") \ |
+ C(use_osr, false, true, bool, true, "Use OSR") \ |
P(verbose_gc, bool, false, "Enables verbose GC.") \ |
P(verbose_gc_hdr, int, 40, "Print verbose GC header interval.") \ |
R(verify_after_gc, false, bool, false, \ |