Revision: 23154
Author:   [email protected]
Date:     Mon Aug 18 12:30:21 2014 UTC
Log:      Fix invalid ASSERT on 3.27 branch

[email protected]

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

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

=======================================
--- /branches/3.27/src/objects.cc       Wed Jun 18 14:15:57 2014 UTC
+++ /branches/3.27/src/objects.cc       Mon Aug 18 12:30:21 2014 UTC
@@ -6784,8 +6784,8 @@
       ASSERT(target->NumberOfOwnDescriptors() ==
              object->map()->NumberOfOwnDescriptors());
       // This works since descriptors are sorted in order of addition.
-      ASSERT(object->map()->instance_descriptors()->
-             GetKey(descriptor_number) == *name);
+      ASSERT(Name::Equals(handle(object->map()->instance_descriptors()->
+             GetKey(descriptor_number)), name));
       return TryAccessorTransition(object, target, descriptor_number,
                                    component, accessor, attributes);
     }
=======================================
--- /branches/3.27/src/version.cc       Wed Aug  6 09:48:04 2014 UTC
+++ /branches/3.27/src/version.cc       Mon Aug 18 12:30:21 2014 UTC
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     27
 #define BUILD_NUMBER      34
-#define PATCH_LEVEL       12
+#define PATCH_LEVEL       13
 // 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