From a1b2f34bd0f301f550a55ad1ccf43b65f3d5a0c1 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Mon, 27 Feb 2012 14:07:13 -0800 Subject: [PATCH] remove temp sanity check --- src/rt/rust_cc.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/rt/rust_cc.cpp b/src/rt/rust_cc.cpp index eb99e28b2d0..95208b311ee 100644 --- a/src/rt/rust_cc.cpp +++ b/src/rt/rust_cc.cpp @@ -80,9 +80,6 @@ class irc : public shape::data { return; // There can't be any outbound pointers from this. std::pair 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) {