Reviewers: Kevin Millikin, Description: Merge r6496 to trunk: Fix issue 1076.
BUG=1076 Please review this at http://codereview.chromium.org/6266022/ SVN Base: http://v8.googlecode.com/svn/trunk/ Affected files: M src/arm/full-codegen-arm.cc M src/ia32/full-codegen-ia32.cc M src/version.cc M src/x64/full-codegen-x64.cc Index: src/arm/full-codegen-arm.cc =================================================================== --- src/arm/full-codegen-arm.cc (revision 6496) +++ src/arm/full-codegen-arm.cc (working copy) @@ -734,6 +734,8 @@ // Compile all the tests with branches to their bodies. for (int i = 0; i < clauses->length(); i++) { CaseClause* clause = clauses->at(i); + clause->body_target()->entry_label()->Unuse(); + // The default is not a test, but remember it as final fall through. if (clause->is_default()) { default_clause = clause; Index: src/ia32/full-codegen-ia32.cc =================================================================== --- src/ia32/full-codegen-ia32.cc (revision 6496) +++ src/ia32/full-codegen-ia32.cc (working copy) @@ -764,6 +764,8 @@ // Compile all the tests with branches to their bodies. for (int i = 0; i < clauses->length(); i++) { CaseClause* clause = clauses->at(i); + clause->body_target()->entry_label()->Unuse(); + // The default is not a test, but remember it as final fall through. if (clause->is_default()) { default_clause = clause; Index: src/version.cc =================================================================== --- src/version.cc (revision 6496) +++ src/version.cc (working copy) @@ -35,7 +35,7 @@ #define MAJOR_VERSION 3 #define MINOR_VERSION 0 #define BUILD_NUMBER 11 -#define PATCH_LEVEL 2 +#define PATCH_LEVEL 3 #define CANDIDATE_VERSION false // Define SONAME to have the SCons build the put a specific SONAME into the Index: src/x64/full-codegen-x64.cc =================================================================== --- src/x64/full-codegen-x64.cc (revision 6496) +++ src/x64/full-codegen-x64.cc (working copy) @@ -710,6 +710,8 @@ // Compile all the tests with branches to their bodies. for (int i = 0; i < clauses->length(); i++) { CaseClause* clause = clauses->at(i); + clause->body_target()->entry_label()->Unuse(); + // The default is not a test, but remember it as final fall through. if (clause->is_default()) { default_clause = clause; -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
