about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-09-02 12:40:16 +0000
committerbors <bors@rust-lang.org>2023-09-02 12:40:16 +0000
commitc4f25777a08cd64b710e8a9a6159e67cbb35e6f5 (patch)
treed1be4f16fe6d25c608033772cf6c928f00587f38 /tests
parent9229b1eab44046253971445be47423ef779b178f (diff)
parentf93e1258287e189aaf080d7e5336bac75633eb58 (diff)
downloadrust-c4f25777a08cd64b710e8a9a6159e67cbb35e6f5.tar.gz
rust-c4f25777a08cd64b710e8a9a6159e67cbb35e6f5.zip
Auto merge of #115273 - the8472:take-fold, r=cuviper
Optimize Take::{fold, for_each} when wrapping TrustedRandomAccess iterators
Diffstat (limited to 'tests')
-rw-r--r--tests/codegen/lib-optimizations/iter-sum.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/codegen/lib-optimizations/iter-sum.rs b/tests/codegen/lib-optimizations/iter-sum.rs
new file mode 100644
index 00000000000..ff7ca6ef6c1
--- /dev/null
+++ b/tests/codegen/lib-optimizations/iter-sum.rs
@@ -0,0 +1,15 @@
+// ignore-debug: the debug assertions get in the way
+// compile-flags: -O
+// only-x86_64 (vectorization varies between architectures)
+#![crate_type = "lib"]
+
+
+// Ensure that slice + take + sum gets vectorized.
+// Currently this relies on the slice::Iter::try_fold implementation
+// CHECK-LABEL: @slice_take_sum
+#[no_mangle]
+pub fn slice_take_sum(s: &[u64], l: usize) -> u64 {
+    // CHECK: vector.body:
+    // CHECK: ret
+    s.iter().take(l).sum()
+}