Index: src/store-buffer.h |
diff --git a/src/store-buffer.h b/src/store-buffer.h |
index 9101c0eb892435d2ba07950d6906416d1fc7610b..de7be0e34ea79b90248ac660ce2d3a430f700fc2 100644 |
--- a/src/store-buffer.h |
+++ b/src/store-buffer.h |
@@ -81,8 +81,8 @@ class StoreBuffer { |
Object*** Start() { return reinterpret_cast<Object***>(old_start_); } |
Object*** Top() { return reinterpret_cast<Object***>(old_top_); } |
void SetTop(Object*** top) { |
- ASSERT(top >= Start()); |
- ASSERT(top <= Limit()); |
+ DCHECK(top >= Start()); |
+ DCHECK(top <= Limit()); |
old_top_ = reinterpret_cast<Address*>(top); |
} |