| Index: src/hydrogen-redundant-phi.cc
|
| diff --git a/src/hydrogen-redundant-phi.cc b/src/hydrogen-redundant-phi.cc
|
| index 67d534eda010ef4aab49a2fe4f470f225d0ef382..0b9b0aaf1dceb52e6dee38d3b15f5240c72fd81a 100644
|
| --- a/src/hydrogen-redundant-phi.cc
|
| +++ b/src/hydrogen-redundant-phi.cc
|
| @@ -25,7 +25,7 @@ void HRedundantPhiEliminationPhase::Run() {
|
| // Make sure that we *really* removed all redundant phis.
|
| for (int i = 0; i < blocks->length(); ++i) {
|
| for (int j = 0; j < blocks->at(i)->phis()->length(); j++) {
|
| - ASSERT(blocks->at(i)->phis()->at(j)->GetRedundantReplacement() == NULL);
|
| + DCHECK(blocks->at(i)->phis()->at(j)->GetRedundantReplacement() == NULL);
|
| }
|
| }
|
| #endif
|
|
|