Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Unified Diff: src/objects.cc

Issue 10450038: Fixing debug build, missing parentheses (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index 794234be5035b74efd3fcef9980d7eec8db4c064..eb6636a7a040ab04bd68f5eff0ea66eb41571f9e 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -5277,8 +5277,8 @@ class TraversableMap : public Map {
} 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;
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698