Revision: 21393
Author: [email protected]
Date: Tue May 20 17:56:11 2014 UTC
Log: Version 3.27.8.1 (merged r21392)
Disable ArrayShift hydrogen support
BUG=chromium:374838
LOG=N
[email protected]
Review URL: https://codereview.chromium.org/293013004
http://code.google.com/p/v8/source/detail?r=21393
Modified:
/trunk/src/hydrogen.cc
/trunk/src/version.cc
=======================================
--- /trunk/src/hydrogen.cc Tue May 20 07:01:48 2014 UTC
+++ /trunk/src/hydrogen.cc Tue May 20 17:56:11 2014 UTC
@@ -7934,6 +7934,10 @@
return true;
}
case kArrayShift: {
+ // Something in here seems to be causing crbug.com/374838.
+ // TODO(bmeurer): Investigate the problem and re-enable this code.
+ return false;
+
if (receiver_map.is_null()) return false;
if (receiver_map->instance_type() != JS_ARRAY_TYPE) return false;
ElementsKind kind = receiver_map->elements_kind();
=======================================
--- /trunk/src/version.cc Tue May 20 07:01:48 2014 UTC
+++ /trunk/src/version.cc Tue May 20 17:56:11 2014 UTC
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 27
#define BUILD_NUMBER 8
-#define PATCH_LEVEL 0
+#define PATCH_LEVEL 1
// 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.