Revision: 22810
Author:   [email protected]
Date:     Mon Aug  4 11:23:46 2014 UTC
Log:      Version 3.27.34.10 (merged r22494)

Fix off-by-one error in Array.concat slow mode check

BUG=chromium:395499
LOG=N
[email protected]

Review URL: https://codereview.chromium.org/439263002
http://code.google.com/p/v8/source/detail?r=22810

Modified:
 /branches/3.27/src/runtime.cc
 /branches/3.27/src/version.cc

=======================================
--- /branches/3.27/src/runtime.cc       Tue Jun 24 14:13:26 2014 UTC
+++ /branches/3.27/src/runtime.cc       Mon Aug  4 11:23:46 2014 UTC
@@ -10059,8 +10059,8 @@
     // but the array blowing the limit didn't contain elements beyond the
     // provided-for index range, go to dictionary mode now.
     if (fast_elements_ &&
-        index_offset_ >= static_cast<uint32_t>(
-            FixedArrayBase::cast(*storage_)->length())) {
+        index_offset_ >
+ static_cast<uint32_t>(FixedArrayBase::cast(*storage_)->length())) {
       SetDictionaryMode();
     }
   }
=======================================
--- /branches/3.27/src/version.cc       Thu Jul 31 11:34:43 2014 UTC
+++ /branches/3.27/src/version.cc       Mon Aug  4 11:23:46 2014 UTC
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     27
 #define BUILD_NUMBER      34
-#define PATCH_LEVEL       9
+#define PATCH_LEVEL       10
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0

--
--
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