Reviewers: balazs.kilvady, akos.palfi.imgtec, gergely.kis.imgtec, dusmil.imgtec, danno,

Message:
PTAL.

Description:
MIPS: Fix for r24501.

BUG=

Please review this at https://codereview.chromium.org/646863003/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+2, -0 lines):
  M src/mips/full-codegen-mips.cc
  M src/mips64/full-codegen-mips64.cc


Index: src/mips/full-codegen-mips.cc
diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc
index eb84015cdc8b684982e27fb9b78ae9ffc959f262..a4b188027dd7ceacdfc0ada16cd4848542f77c6c 100644
--- a/src/mips/full-codegen-mips.cc
+++ b/src/mips/full-codegen-mips.cc
@@ -4517,6 +4517,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
               MemOperand(sp, 1 * kPointerSize));
         __ lw(LoadDescriptor::NameRegister(), MemOperand(sp, 0));
         EmitKeyedPropertyLoad(prop);
+        break;
       }

       case VARIABLE:
Index: src/mips64/full-codegen-mips64.cc
diff --git a/src/mips64/full-codegen-mips64.cc b/src/mips64/full-codegen-mips64.cc index 38798873159810af7e7092157092aada3ec73e80..23bfeb06bd74285187ad3c0fe838928766564ec3 100644
--- a/src/mips64/full-codegen-mips64.cc
+++ b/src/mips64/full-codegen-mips64.cc
@@ -4517,6 +4517,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) {
               MemOperand(sp, 1 * kPointerSize));
         __ ld(LoadDescriptor::NameRegister(), MemOperand(sp, 0));
         EmitKeyedPropertyLoad(prop);
+        break;
       }

       case VARIABLE:


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to