about summary refs log tree commit diff
path: root/tests/codegen
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-12-02 18:04:01 +0000
committerbors <bors@rust-lang.org>2023-12-02 18:04:01 +0000
commit3f1e30a0a595f1d29fb10d41d9a58811ffdefb6a (patch)
tree69fe981940c9d3d00d8589ef0606ce0c3ac1cea8 /tests/codegen
parent0908f173fd884ae90584e0b0bca83cb270c23936 (diff)
parentbcb1c41628179484d65cbe6fa21618d104c99a70 (diff)
downloadrust-3f1e30a0a595f1d29fb10d41d9a58811ffdefb6a.tar.gz
rust-3f1e30a0a595f1d29fb10d41d9a58811ffdefb6a.zip
Auto merge of #118077 - calebzulawski:sync-portable-simd-2023-11-19, r=workingjubilee
Portable SIMD subtree update

Syncs nightly to the latest changes from rust-lang/portable-simd

r? `@rust-lang/libs`
Diffstat (limited to 'tests/codegen')
-rw-r--r--tests/codegen/simd/simd-wide-sum.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codegen/simd/simd-wide-sum.rs b/tests/codegen/simd/simd-wide-sum.rs
index 6e7d3d9316a..109d5381343 100644
--- a/tests/codegen/simd/simd-wide-sum.rs
+++ b/tests/codegen/simd/simd-wide-sum.rs
@@ -10,7 +10,7 @@
 #![crate_type = "lib"]
 #![feature(portable_simd)]
 
-use std::simd::{Simd, SimdUint};
+use std::simd::prelude::*;
 const N: usize = 16;
 
 #[no_mangle]