Reviewers: Jakob,
Description:
Version 3.26.31.14 (merged r21375)
Fix invalid condition in check elimination effects.
BUG=398426
LOG=Y
[email protected]
Please review this at https://codereview.chromium.org/435613002/
SVN Base: https://v8.googlecode.com/svn/branches/3.26
Affected files (+2, -2 lines):
M src/hydrogen-check-elimination.cc
M src/version.cc
Index: src/hydrogen-check-elimination.cc
diff --git a/src/hydrogen-check-elimination.cc
b/src/hydrogen-check-elimination.cc
index
fb7812e3ce9334cc4603b0a49da468616e922a9a..9a5c9e30d495c569b2a36a433ad76b38f672f334
100644
--- a/src/hydrogen-check-elimination.cc
+++ b/src/hydrogen-check-elimination.cc
@@ -619,7 +619,7 @@ class HCheckMapsEffects : public ZoneObject {
switch (instr->opcode()) {
case HValue::kStoreNamedField: {
HStoreNamedField* store = HStoreNamedField::cast(instr);
- if (store->access().IsMap() && store->has_transition()) {
+ if (store->access().IsMap() || store->has_transition()) {
objects_.Add(store->object(), zone);
}
break;
Index: src/version.cc
diff --git a/src/version.cc b/src/version.cc
index
28cf5fd0cb4534d11076166be23f03e2e1838335..23a43e8aec166f0f98d9eaccebd28989f805b7d0
100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 26
#define BUILD_NUMBER 31
-#define PATCH_LEVEL 13
+#define PATCH_LEVEL 14
// 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.