about summary refs log tree commit diff
path: root/src/test/codegen/repr-transparent-aggregates-3.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-79/+0
2021-10-22Update the minimum external LLVM to 12Josh Stone-1/+0
2021-04-03Remove redundant `ignore-tidy-linelength` annotationsSimon 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-02-28Support LLVM 12 in rustcNikita Popov-8/+10
2020-01-20stabilize transparent_enumsMazdak Farrokhzad-1/+1
2019-06-10Implement RFC 2645 (transparent enums and unions)Michael Bradshaw-9/+49
Tracking issue: #60405
2018-12-25Remove licensesMark Rousskov-10/+0
2018-06-12Stabilize #[repr(transparent)]Simon Sapin-1/+0
Tracking issue FCP: https://github.com/rust-lang/rust/issues/43036#issuecomment-394094318 Reference PR: https://github.com/rust-lang-nursery/reference/pull/353
2018-03-09test: fix repr-transparent-aggregates test on mips64James Cowgill-0/+49
Since #47964 was merged, 64-bit mips started passing all structures using 64-bit chunks regardless of their contents. The repr-transparent-aggregates tests needs updating to cope with this.