Revision: 6497
Author: [email protected]
Date: Wed Jan 26 07:44:20 2011
Log: Merge r6496 to trunk: Fix issue 1076.

BUG=1076

Review URL: http://codereview.chromium.org/6266022
http://code.google.com/p/v8/source/detail?r=6497

Modified:
 /trunk/src/arm/full-codegen-arm.cc
 /trunk/src/ia32/full-codegen-ia32.cc
 /trunk/src/version.cc
 /trunk/src/x64/full-codegen-x64.cc

=======================================
--- /trunk/src/arm/full-codegen-arm.cc  Tue Jan 25 06:06:47 2011
+++ /trunk/src/arm/full-codegen-arm.cc  Wed Jan 26 07:44:20 2011
@@ -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;
=======================================
--- /trunk/src/ia32/full-codegen-ia32.cc        Tue Jan 25 06:06:47 2011
+++ /trunk/src/ia32/full-codegen-ia32.cc        Wed Jan 26 07:44:20 2011
@@ -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;
=======================================
--- /trunk/src/version.cc       Wed Jan 26 02:44:48 2011
+++ /trunk/src/version.cc       Wed Jan 26 07:44:20 2011
@@ -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
=======================================
--- /trunk/src/x64/full-codegen-x64.cc  Tue Jan 25 06:06:47 2011
+++ /trunk/src/x64/full-codegen-x64.cc  Wed Jan 26 07:44:20 2011
@@ -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

Reply via email to