Chromium Code Reviews| Index: src/flag-definitions.h |
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h |
| index 9fd23f9940a110563ce0eb77b6857a8205195eaa..9457222ae0befc832951f0fb2533a49c8b1ea4af 100644 |
| --- a/src/flag-definitions.h |
| +++ b/src/flag-definitions.h |
| @@ -130,6 +130,9 @@ public: |
| // |
| #define FLAG FLAG_FULL |
| + |
| +DEFINE_bool(new_abcd, true, "use new abcd") |
|
Jakob Kummerow
2013/03/14 12:50:09
Please move this next to FLAG_idefs. You could als
Massi
2013/03/14 15:07:18
Done.
|
| + |
| // Flags for language modes and experimental language features. |
| DEFINE_bool(use_strict, false, "enforce strict mode") |
| DEFINE_bool(es5_readonly, true, |
| @@ -207,7 +210,7 @@ DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") |
| DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") |
| DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") |
| DEFINE_bool(use_osr, true, "use on-stack replacement") |
| -DEFINE_bool(idefs, false, "use informative definitions") |
| +DEFINE_bool(idefs, true, "use informative definitions") |
| DEFINE_bool(array_bounds_checks_elimination, true, |
| "perform array bounds checks elimination") |
| DEFINE_bool(array_index_dehoisting, true, |