Revision: 9334
Author:   [email protected]
Date:     Tue Sep 20 02:44:23 2011
Log:      Make newer GCCs happier: Removed unused variables.
Review URL: http://codereview.chromium.org/7969014
http://code.google.com/p/v8/source/detail?r=9334

Modified:
 /branches/bleeding_edge/src/ia32/full-codegen-ia32.cc
 /branches/bleeding_edge/src/mips/full-codegen-mips.cc
 /branches/bleeding_edge/src/x64/full-codegen-x64.cc

=======================================
--- /branches/bleeding_edge/src/ia32/full-codegen-ia32.cc Mon Sep 19 11:36:47 2011 +++ /branches/bleeding_edge/src/ia32/full-codegen-ia32.cc Tue Sep 20 02:44:23 2011
@@ -4097,11 +4097,8 @@
     default: {
       VisitForAccumulatorValue(expr->right());
       Condition cc = no_condition;
-      bool strict = false;
       switch (op) {
         case Token::EQ_STRICT:
-          strict = true;
-          // Fall through
         case Token::EQ:
           cc = equal;
           __ pop(edx);
=======================================
--- /branches/bleeding_edge/src/mips/full-codegen-mips.cc Mon Sep 19 07:50:33 2011 +++ /branches/bleeding_edge/src/mips/full-codegen-mips.cc Tue Sep 20 02:44:23 2011
@@ -4050,11 +4050,8 @@
     default: {
       VisitForAccumulatorValue(expr->right());
       Condition cc = eq;
-      bool strict = false;
       switch (op) {
         case Token::EQ_STRICT:
-          strict = true;
-          // Fall through.
         case Token::EQ:
           cc = eq;
           __ mov(a0, result_register());
=======================================
--- /branches/bleeding_edge/src/x64/full-codegen-x64.cc Mon Sep 19 11:36:47 2011 +++ /branches/bleeding_edge/src/x64/full-codegen-x64.cc Tue Sep 20 02:44:23 2011
@@ -3972,7 +3972,6 @@
       Condition cc = no_condition;
       switch (op) {
         case Token::EQ_STRICT:
-          // Fall through.
         case Token::EQ:
           cc = equal;
           __ pop(rdx);

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to