about summary refs log tree commit diff
path: root/tests/codegen-llvm/issues/assert-for-loop-bounds-check-71997.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen-llvm/issues/assert-for-loop-bounds-check-71997.rs')
-rw-r--r--tests/codegen-llvm/issues/assert-for-loop-bounds-check-71997.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/codegen-llvm/issues/assert-for-loop-bounds-check-71997.rs b/tests/codegen-llvm/issues/assert-for-loop-bounds-check-71997.rs
new file mode 100644
index 00000000000..a0c64d607a8
--- /dev/null
+++ b/tests/codegen-llvm/issues/assert-for-loop-bounds-check-71997.rs
@@ -0,0 +1,18 @@
+// Tests that there's no bounds check within for-loop after asserting that
+// the range start and end are within bounds.
+
+//@ compile-flags: -Copt-level=3
+
+#![crate_type = "lib"]
+
+// CHECK-LABEL: @no_bounds_check_after_assert
+#[no_mangle]
+fn no_bounds_check_after_assert(slice: &[u64], start: usize, end: usize) -> u64 {
+    // CHECK-NOT: panic_bounds_check
+    let mut total = 0;
+    assert!(start < end && start < slice.len() && end <= slice.len());
+    for i in start..end {
+        total += slice[i];
+    }
+    total
+}