about summary refs log tree commit diff
path: root/tests/codegen/lib-optimizations
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-09-03 07:35:33 +0000
committerbors <bors@rust-lang.org>2023-09-03 07:35:33 +0000
commitf2568c8316805749fe616e3de08c3f7c2bec3680 (patch)
tree62acd3e15506a4b53b29a70b7882c0c2fa0352b4 /tests/codegen/lib-optimizations
parentd2f5dc9745defa7cb90a88dd8adc7d347f42d0bc (diff)
parentfb26c21c356075c0cd35d98fa0b786b7633249d8 (diff)
downloadrust-f2568c8316805749fe616e3de08c3f7c2bec3680.tar.gz
rust-f2568c8316805749fe616e3de08c3f7c2bec3680.zip
Auto merge of #3050 - RalfJung:rustup, r=RalfJung
Rustup
Diffstat (limited to 'tests/codegen/lib-optimizations')
-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()
+}