about summary refs log tree commit diff
path: root/src/test/ui/simd/simd-generics.rs
AgeCommit message (Collapse)AuthorLines
2021-10-04Rearrange test/ui/{simd,simd-intrinsic}Jubilee Young-85/+0
Mostly test/ui/simd-intrinsic -> test/ui/simd/intrinsic Intrinsics-per-se tests moved into that folder Repetitive names were cut short. Duplicate names given -pass annotations.
2021-08-03Allow generic SIMD array element typeCaleb Zulawski-15/+43
2020-12-26update testsBastian Kauschke-1/+1
2020-11-08update ui testsAshley Mannix-6/+6
2020-11-08Support repr(simd) on ADTs containing a single array fieldgnzlbg-7/+25
This PR allows using `#[repr(simd)]` on ADTs containing a single array field: ```rust #[repr(simd)] struct S0([f32; 4]); #[repr(simd)] struct S1<const N: usize>([f32; N]); #[repr(simd)] struct S2<T, const N: usize>([T; N]); ``` This should allow experimenting with portable packed SIMD abstractions on nightly that make use of const generics.
2019-07-27tests: Move run-pass tests without naming conflicts to uiVadim Petrochenkov-0/+39