Reviewers: Massi, Description: Disable array index dehoisting due to stability issues.
Please review this at https://chromiumcodereview.appspot.com/10834303/ SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/flag-definitions.h 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") -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
