about summary refs log tree commit diff
path: root/src/test/ui/layout/hexagon-enum.rs
AgeCommit message (Collapse)AuthorLines
2021-03-15Replace `type_alias_impl_trait` by `min_type_alias_impl_trait` with no ↵Oli Scherer-1/+1
actual changes in behaviour This makes `type_alias_impl_trait` not actually do anything anymore
2021-02-22Test hexagon-enum only when llvm target is presentSimonas Kazlauskas-0/+1
See https://github.com/rust-lang/rust/pull/82379#issuecomment-783439754
2021-02-22Fix sizes of repr(C) enums on hexagonSimonas Kazlauskas-0/+33
Enums on hexagon use a smallest size (but at least 1 byte) that fits all the enumeration values. This is unlike many other ABIs where enums are at least 32 bits.