| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -47/+0 | |
| 2020-11-29 | args may be passed by value | Ashley Mannix | -4/+4 | |
| 2020-11-14 | tweak new codegen test to work on local | Ashley Mannix | -4/+4 | |
| 2020-11-13 | remove const_generics from codegen tests | Ashley Mannix | -2/+2 | |
| 2020-11-08 | Support repr(simd) on ADTs containing a single array field | gnzlbg | -0/+47 | |
| 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. | ||||
