Reviewers: William Hesse, Kevin Millikin, Description: Disable incomplete fast top-level compiler on the 1.3 branch.
Please review this at http://codereview.chromium.org/387024 SVN Base: http://v8.googlecode.com/svn/branches/1.3/ Affected files: M src/flag-definitions.h M src/version.cc Index: src/flag-definitions.h =================================================================== --- src/flag-definitions.h (revision 3280) +++ src/flag-definitions.h (working copy) @@ -141,7 +141,7 @@ DEFINE_bool(strict, false, "strict error checking") DEFINE_int(min_preparse_length, 1024, "minimum length for automatic enable preparsing") -DEFINE_bool(fast_compiler, true, +DEFINE_bool(fast_compiler, false, "use the fast-mode compiler for some top-level code") DEFINE_bool(trace_bailout, false, "print reasons for failing to use fast compilation") Index: src/version.cc =================================================================== --- src/version.cc (revision 3280) +++ src/version.cc (working copy) @@ -35,7 +35,7 @@ #define MAJOR_VERSION 1 #define MINOR_VERSION 3 #define BUILD_NUMBER 18 -#define PATCH_LEVEL 6 +#define PATCH_LEVEL 7 #define CANDIDATE_VERSION false // Define SONAME to have the SCons build the put a specific SONAME into the --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
