Revision: 22673
Author:   [email protected]
Date:     Tue Jul 29 14:17:07 2014 UTC
Log:      ahum. Small fix.

BUG=
[email protected]

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

Modified:
 /branches/bleeding_edge/src/objects.cc

=======================================
--- /branches/bleeding_edge/src/objects.cc      Tue Jul 29 13:39:09 2014 UTC
+++ /branches/bleeding_edge/src/objects.cc      Tue Jul 29 14:17:07 2014 UTC
@@ -2447,7 +2447,7 @@
                           Handle<HeapType> new_type) {
   DisallowHeapAllocation no_allocation;
   PropertyDetails details = instance_descriptors()->GetDetails(descriptor);
-  if (!details.type() == FIELD) return;
+  if (details.type() != FIELD) return;
   if (HasTransitionArray()) {
     TransitionArray* transitions = this->transitions();
     for (int i = 0; i < transitions->number_of_transitions(); ++i) {

--
--
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