| Index: src/hydrogen-bce.cc
|
| diff --git a/src/hydrogen-bce.cc b/src/hydrogen-bce.cc
|
| index c98a03cb5ab32d78b79a214c07edf5ecd2b1ee97..d5d4a286167f9606a224bddfc0d2884770cb10fa 100644
|
| --- a/src/hydrogen-bce.cc
|
| +++ b/src/hydrogen-bce.cc
|
| @@ -135,7 +135,7 @@ class BoundsCheckBbData: public ZoneObject {
|
| void UpdateUpperOffsets(HBoundsCheck* check, int32_t offset) {
|
| BoundsCheckBbData* data = FatherInDominatorTree();
|
| while (data != NULL && data->UpperCheck() == check) {
|
| - ASSERT(data->upper_offset_ <= offset);
|
| + ASSERT(data->upper_offset_ < offset);
|
| data->upper_offset_ = offset;
|
| data = data->FatherInDominatorTree();
|
| }
|
|
|