Rust-GCC / gccrs

GCC Front-End for Rust
https://rust-gcc.github.io/
GNU General Public License v2.0
2.37k stars 152 forks source link

Support other repr layouts #1208

Open dafaust opened 2 years ago

dafaust commented 2 years ago

https://doc.rust-lang.org/reference/type-layout.html#representations

structs

unions

enums

bjorn3 commented 2 years ago

repr(transparent) allows multiple members for as long as all but one member are zero sized.

dafaust commented 2 years ago

Ah, good point. Thanks.