| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -43/+0 | |
| 2022-05-25 | Update some codegen tests for opaque pointers | Nikita Popov | -6/+6 | |
| 2021-04-03 | Remove redundant `ignore-tidy-linelength` annotations | Simon Jakobi | -1/+1 | |
| This is step 2 towards fixing #77548. In the codegen and codegen-units test suites, the `//` comment markers were kept in order not to affect any source locations. This is because these tests cannot be automatically `--bless`ed. | ||||
| 2021-03-22 | Update the minimum external LLVM to 10 | Josh Stone | -1/+0 | |
| 2020-11-29 | looser regex on local args | Ashley Mannix | -6/+6 | |
| 2020-11-24 | generalize codegen to non 64bit platforms | Ashley Mannix | -6/+6 | |
| 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/+44 | |
| 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. | ||||
