2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-08-31 13:02:01 +00:00
|
|
|
#![allow(deprecated)]
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2015-08-12 23:09:02 +00:00
|
|
|
#![feature(repr_simd)]
|
2015-01-05 03:59:47 +00:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
|
|
|
use std::mem;
|
|
|
|
|
|
|
|
/// `T` should satisfy `size_of T (mod min_align_of T) === 0` to be stored at `Vec<T>` properly
|
|
|
|
/// Please consult the issue #20460
|
|
|
|
fn check<T>() {
|
2021-01-23 21:31:43 +00:00
|
|
|
assert_eq!(mem::size_of::<T>() % mem::min_align_of::<T>(), 0);
|
|
|
|
assert_eq!(mem::size_of::<T>() % mem::min_align_of::<T>(), 0);
|
|
|
|
assert_eq!(mem::size_of::<T>() % mem::min_align_of::<T>(), 0);
|
2015-01-05 03:59:47 +00:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:31:43 +00:00
|
|
|
#[repr(simd)]
|
|
|
|
struct U8<const N: usize>([u8; N]);
|
2015-01-05 03:59:47 +00:00
|
|
|
|
2021-01-23 21:31:43 +00:00
|
|
|
#[repr(simd)]
|
|
|
|
struct I16<const N: usize>([i16; N]);
|
2015-01-05 03:59:47 +00:00
|
|
|
|
2021-01-23 21:31:43 +00:00
|
|
|
#[repr(simd)]
|
|
|
|
struct F32<const N: usize>([f32; N]);
|
2019-03-15 05:51:26 +00:00
|
|
|
|
2021-01-23 21:31:43 +00:00
|
|
|
#[repr(simd)]
|
|
|
|
struct Usize<const N: usize>([usize; N]);
|
2019-03-15 05:51:26 +00:00
|
|
|
|
2021-01-23 21:31:43 +00:00
|
|
|
#[repr(simd)]
|
|
|
|
struct Isize<const N: usize>([isize; N]);
|
2015-01-05 03:59:47 +00:00
|
|
|
|
2021-01-23 21:31:43 +00:00
|
|
|
fn main() {
|
|
|
|
check::<U8<2>>();
|
|
|
|
check::<U8<4>>();
|
|
|
|
check::<U8<8>>();
|
2015-01-05 03:59:47 +00:00
|
|
|
|
2021-01-23 21:31:43 +00:00
|
|
|
check::<I16<2>>();
|
|
|
|
check::<I16<4>>();
|
|
|
|
check::<I16<8>>();
|
2015-01-05 03:59:47 +00:00
|
|
|
|
2021-01-23 21:31:43 +00:00
|
|
|
check::<F32<2>>();
|
|
|
|
check::<F32<4>>();
|
|
|
|
check::<F32<8>>();
|
2019-03-15 05:51:26 +00:00
|
|
|
|
2021-01-23 21:31:43 +00:00
|
|
|
check::<Usize<2>>();
|
|
|
|
check::<Usize<4>>();
|
|
|
|
check::<Usize<8>>();
|
2019-03-15 05:51:26 +00:00
|
|
|
|
2021-01-23 21:31:43 +00:00
|
|
|
check::<Isize<2>>();
|
|
|
|
check::<Isize<4>>();
|
|
|
|
check::<Isize<8>>();
|
|
|
|
}
|