Index: src/lithium-inl.h |
diff --git a/src/lithium-inl.h b/src/lithium-inl.h |
index 5e5084f176ec7fcc7138e4399e33b3e0c066857b..36e166e9260c4a0fe2ed562636d7fec698ff266a 100644 |
--- a/src/lithium-inl.h |
+++ b/src/lithium-inl.h |
@@ -38,7 +38,7 @@ bool TempIterator::Done() { return current_ >= limit_; } |
LOperand* TempIterator::Current() { |
- ASSERT(!Done()); |
+ DCHECK(!Done()); |
return instr_->TempAt(current_); |
} |
@@ -64,8 +64,8 @@ bool InputIterator::Done() { return current_ >= limit_; } |
LOperand* InputIterator::Current() { |
- ASSERT(!Done()); |
- ASSERT(instr_->InputAt(current_) != NULL); |
+ DCHECK(!Done()); |
+ DCHECK(instr_->InputAt(current_) != NULL); |
return instr_->InputAt(current_); |
} |
@@ -95,10 +95,10 @@ bool UseIterator::Done() { |
LOperand* UseIterator::Current() { |
- ASSERT(!Done()); |
+ DCHECK(!Done()); |
LOperand* result = input_iterator_.Done() ? env_iterator_.Current() |
: input_iterator_.Current(); |
- ASSERT(result != NULL); |
+ DCHECK(result != NULL); |
return result; |
} |