Revision: 22761
Author: [email protected]
Date: Thu Jul 31 14:23:34 2014 UTC
Log: Version 3.26.31.14 (merged r21375)
Fix invalid condition in check elimination effects.
BUG=398426
LOG=Y
[email protected]
Review URL: https://codereview.chromium.org/435613002
http://code.google.com/p/v8/source/detail?r=22761
Modified:
/branches/3.26/src/hydrogen-check-elimination.cc
/branches/3.26/src/version.cc
=======================================
--- /branches/3.26/src/hydrogen-check-elimination.cc Tue May 6 00:04:47
2014 UTC
+++ /branches/3.26/src/hydrogen-check-elimination.cc Thu Jul 31 14:23:34
2014 UTC
@@ -619,7 +619,7 @@
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;
=======================================
--- /branches/3.26/src/version.cc Thu Jul 31 12:20:32 2014 UTC
+++ /branches/3.26/src/version.cc Thu Jul 31 14:23:34 2014 UTC
@@ -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.