Chromium Code Reviews

Unified Diff: src/mark-compact-inl.h

Issue 8256012: Remove some asserts to speed up debug mode. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/mark-compact-inl.h
===================================================================
--- src/mark-compact-inl.h (revision 9581)
+++ src/mark-compact-inl.h (working copy)
@@ -38,7 +38,7 @@
MarkBit Marking::MarkBitFrom(Address addr) {
- MemoryChunk *p = MemoryChunk::FromAddress(addr);
+ MemoryChunk* p = MemoryChunk::FromAddress(addr);
return p->markbits()->MarkBitFromIndex(p->AddressToMarkbitIndex(addr),
p->ContainsOnlyData());
}
« src/incremental-marking.cc ('K') | « src/mark-compact.h ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine