rust/tests/codegen/repr/transparent-sysv64.rs
Jubilee Young 040bc3447e mv tests/codegen/repr-* tests/codegen/repr
Slightly more complicated: also give them appropriate names
that somewhat describe the cases they are trying to cover,
using information from PR chatter in rust-lang/rust#47158
2023-07-29 15:35:36 -07:00

29 lines
577 B
Rust

// only-x86_64
// compile-flags: -C no-prepopulate-passes
#![crate_type="lib"]
#[repr(C)]
pub struct Rgb8 { r: u8, g: u8, b: u8 }
#[repr(transparent)]
pub struct Rgb8Wrap(Rgb8);
// CHECK: i24 @test_Rgb8Wrap(i24{{( %0)?}})
#[no_mangle]
pub extern "sysv64" fn test_Rgb8Wrap(_: Rgb8Wrap) -> Rgb8Wrap { loop {} }
#[repr(C)]
pub union FloatBits {
float: f32,
bits: u32,
}
#[repr(transparent)]
pub struct SmallUnion(FloatBits);
// CHECK: i32 @test_SmallUnion(i32{{( %0)?}})
#[no_mangle]
pub extern "sysv64" fn test_SmallUnion(_: SmallUnion) -> SmallUnion { loop {} }