Reviewers: Massi, Description: Disable array index dehoisting due to stability issues.
Please review this at https://chromiumcodereview.appspot.com/10855144/ SVN Base: http://v8.googlecode.com/svn/branches/3.12/ Affected files: M src/flag-definitions.h M src/version.cc Index: src/flag-definitions.h =================================================================== --- src/flag-definitions.h (revision 12302) +++ src/flag-definitions.h (working copy) @@ -200,7 +200,7 @@ DEFINE_bool(use_osr, true, "use on-stack replacement") DEFINE_bool(array_bounds_checks_elimination, true, "perform array bounds checks elimination") -DEFINE_bool(array_index_dehoisting, true, +DEFINE_bool(array_index_dehoisting, false, "perform array index dehoisting") DEFINE_bool(trace_osr, false, "trace on-stack replacement") Index: src/version.cc =================================================================== --- src/version.cc (revision 12302) +++ src/version.cc (working copy) @@ -35,7 +35,7 @@ #define MAJOR_VERSION 3 #define MINOR_VERSION 12 #define BUILD_NUMBER 19 -#define PATCH_LEVEL 1 +#define PATCH_LEVEL 2 // Use 1 for candidates and 0 otherwise. // (Boolean macro values are not supported by all preprocessors.) #define IS_CANDIDATE_VERSION 0 -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
