about summary refs log tree commit diff
path: root/tests/codegen-llvm/slice-windows-no-bounds-check.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen-llvm/slice-windows-no-bounds-check.rs')
-rw-r--r--tests/codegen-llvm/slice-windows-no-bounds-check.rs32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/codegen-llvm/slice-windows-no-bounds-check.rs b/tests/codegen-llvm/slice-windows-no-bounds-check.rs
new file mode 100644
index 00000000000..87e89b14f06
--- /dev/null
+++ b/tests/codegen-llvm/slice-windows-no-bounds-check.rs
@@ -0,0 +1,32 @@
+#![crate_type = "lib"]
+
+//@ compile-flags: -Copt-level=3
+
+use std::slice::Windows;
+
+// CHECK-LABEL: @naive_string_search
+#[no_mangle]
+pub fn naive_string_search(haystack: &str, needle: &str) -> Option<usize> {
+    if needle.is_empty() {
+        return Some(0);
+    }
+    // CHECK-NOT: panic
+    // CHECK-NOT: fail
+    haystack.as_bytes().windows(needle.len()).position(|sub| sub == needle.as_bytes())
+}
+
+// CHECK-LABEL: @next
+#[no_mangle]
+pub fn next<'a>(w: &mut Windows<'a, u32>) -> Option<&'a [u32]> {
+    // CHECK-NOT: panic
+    // CHECK-NOT: fail
+    w.next()
+}
+
+// CHECK-LABEL: @next_back
+#[no_mangle]
+pub fn next_back<'a>(w: &mut Windows<'a, u32>) -> Option<&'a [u32]> {
+    // CHECK-NOT: panic
+    // CHECK-NOT: fail
+    w.next_back()
+}