remove temp sanity check

This commit is contained in:
Niko Matsakis 2012-02-27 14:07:13 -08:00
parent 55a642c2d4
commit a1b2f34bd0
1 changed files with 0 additions and 3 deletions

View File

@ -80,9 +80,6 @@ class irc : public shape::data<irc,shape::ptr> {
return; // There can't be any outbound pointers from this.
std::pair<uint8_t *,uint8_t *> data_range(get_vec_data_range(dp));
if (data_range.second - data_range.first > 100000)
abort(); // FIXME: Temporary sanity check.
irc sub(*this, data_range.first);
shape::ptr data_end = sub.end_dp = data_range.second;
while (sub.dp < data_end) {