about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2023-12-04 20:46:10 +0100
committerGitHub <noreply@github.com>2023-12-04 20:46:10 +0100
commit89ed7fc040928799ecd8f70a3a967e6799bf99dd (patch)
treec299671b7790b92959bd889fb4196be3e1053d20
parent41288097260f71cbabfebf4bac3f9a2b7117d36a (diff)
parentbcfeaabaf3f942401c23e3edefa9de798ab2dc2f (diff)
downloadrust-89ed7fc040928799ecd8f70a3a967e6799bf99dd.tar.gz
rust-89ed7fc040928799ecd8f70a3a967e6799bf99dd.zip
Rollup merge of #118591 - RalfJung:portable-simd-build-fix, r=workingjubilee,calebzulawski
portable-simd: fix test suite build

``@workingjubilee`` ``@calebzulawski`` don't we run these portable-simd tests on rustc CI? Currently they don't even build here.
-rw-r--r--library/portable-simd/crates/core_simd/tests/pointers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/portable-simd/crates/core_simd/tests/pointers.rs b/library/portable-simd/crates/core_simd/tests/pointers.rs
index a90ff928ced..b9f32d16e01 100644
--- a/library/portable-simd/crates/core_simd/tests/pointers.rs
+++ b/library/portable-simd/crates/core_simd/tests/pointers.rs
@@ -1,4 +1,4 @@
-#![feature(portable_simd, strict_provenance)]
+#![feature(portable_simd, strict_provenance, exposed_provenance)]
 
 use core_simd::simd::{
     ptr::{SimdConstPtr, SimdMutPtr},