| Index: src/flag-definitions.h
|
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h
|
| index 2fcd71f086813193fa86ef62971731d50ee3188e..8900c8d3077c86a32d1af9d5959bc179810333da 100644
|
| --- a/src/flag-definitions.h
|
| +++ b/src/flag-definitions.h
|
| @@ -240,7 +240,7 @@ DEFINE_bool(use_range, true, "use hydrogen range analysis")
|
| DEFINE_bool(use_gvn, true, "use hydrogen global value numbering")
|
| DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing")
|
| DEFINE_bool(use_inlining, true, "use function inlining")
|
| -DEFINE_bool(use_escape_analysis, false, "use hydrogen escape analysis")
|
| +DEFINE_bool(use_escape_analysis, true, "use hydrogen escape analysis")
|
| DEFINE_bool(use_allocation_folding, true, "use allocation folding")
|
| DEFINE_int(max_inlining_levels, 5, "maximum number of inlining levels")
|
| DEFINE_int(max_inlined_source_size, 600,
|
| @@ -636,7 +636,7 @@ DEFINE_int(testing_int_flag, 13, "testing_int_flag")
|
| DEFINE_float(testing_float_flag, 2.5, "float-flag")
|
| DEFINE_string(testing_string_flag, "Hello, world!", "string-flag")
|
| DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness")
|
| -#ifdef WIN32
|
| +#ifdef _WIN32
|
| DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
|
| "file in which to testing_serialize heap")
|
| #else
|
| @@ -791,9 +791,6 @@ DEFINE_bool(log_snapshot_positions, false,
|
| DEFINE_bool(log_suspect, false, "Log suspect operations.")
|
| DEFINE_bool(prof, false,
|
| "Log statistical profiling information (implies --log-code).")
|
| -DEFINE_bool(prof_lazy, false,
|
| - "Used with --prof, only does sampling and logging"
|
| - " when profiler is active.")
|
| DEFINE_bool(prof_browser_mode, true,
|
| "Used with --prof, turns on browser-compatible mode for profiling.")
|
| DEFINE_bool(log_regexp, false, "Log regular expression execution.")
|
|
|