1
Fork 0

Rollup merge of #90909 - RalfJung:miri-no-portable-simd, r=workingjubilee

disable portable SIMD tests in Miri

Until https://github.com/rust-lang/miri/issues/1912 is resolved, we'll have to skip these tests in Miri.
This commit is contained in:
Yuki Okushi 2021-11-16 09:14:23 +09:00 committed by GitHub
commit 35dd1f65e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -1,3 +1,5 @@
#![cfg(not(miri))] // Miri does not support all SIMD intrinsics
use core::simd::f32x4;
#[test]