Revision: 11667
Author:   [email protected]
Date:     Fri May 25 06:39:07 2012
Log:      Fixing debug build, missing parentheses

BUG=
TEST=

Review URL: https://chromiumcodereview.appspot.com/10450038
http://code.google.com/p/v8/source/detail?r=11667

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

=======================================
--- /branches/bleeding_edge/src/objects.cc      Fri May 25 06:21:20 2012
+++ /branches/bleeding_edge/src/objects.cc      Fri May 25 06:39:07 2012
@@ -5277,8 +5277,8 @@
     } else {
       DescriptorArray* descriptor_array =
           static_cast<DescriptorArray*>(object);
-      ASSERT(*HeapObject::RawField(descriptor_array,
-                                   DescriptorArray::kMapOffset)->IsSmi());
+      ASSERT((*HeapObject::RawField(descriptor_array,
+ DescriptorArray::kMapOffset))->IsSmi());
       return descriptor_array;
     }
   }

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to