Revision: 22818
Author: [email protected]
Date: Mon Aug 4 13:01:34 2014 UTC
Log: Version 3.26.31.15 (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/439723005
http://code.google.com/p/v8/source/detail?r=22818
Modified:
/branches/3.26/src/runtime.cc
/branches/3.26/src/version.cc
=======================================
--- /branches/3.26/src/runtime.cc Tue Jun 24 14:33:05 2014 UTC
+++ /branches/3.26/src/runtime.cc Mon Aug 4 13:01:34 2014 UTC
@@ -10051,8 +10051,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.26/src/version.cc Thu Jul 31 14:23:34 2014 UTC
+++ /branches/3.26/src/version.cc Mon Aug 4 13:01:34 2014 UTC
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 26
#define BUILD_NUMBER 31
-#define PATCH_LEVEL 14
+#define PATCH_LEVEL 15
// 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.