about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/rt/rust_cc.cpp3
1 files changed, 0 insertions, 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<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) {