2019-08-17 05:08:01 +00:00
|
|
|
// ignore-emscripten vectors passed directly
|
2022-02-24 23:16:10 +00:00
|
|
|
// compile-flags: -O -C no-prepopulate-passes
|
2018-11-08 19:12:05 +00:00
|
|
|
|
|
|
|
// This test that using union forward the abi of the inner type, as
|
|
|
|
// discussed in #54668
|
|
|
|
|
|
|
|
#![crate_type="lib"]
|
|
|
|
#![feature(repr_simd)]
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub enum Unhab {}
|
|
|
|
|
|
|
|
#[repr(simd)]
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct i64x4(i64, i64, i64, i64);
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub union UnionI64x4{ a:(), b: i64x4 }
|
|
|
|
|
2023-07-27 21:44:13 +00:00
|
|
|
// CHECK: define {{(dso_local )?}}void @test_UnionI64x4(ptr {{.*}} %_1)
|
2018-11-08 19:12:05 +00:00
|
|
|
#[no_mangle]
|
2018-11-14 17:09:54 +00:00
|
|
|
pub fn test_UnionI64x4(_: UnionI64x4) { loop {} }
|
2018-11-08 19:12:05 +00:00
|
|
|
|
|
|
|
pub union UnionI64x4_{ a: i64x4, b: (), c:i64x4, d: Unhab, e: ((),()), f: UnionI64x4 }
|
|
|
|
|
2023-07-27 21:44:13 +00:00
|
|
|
// CHECK: define {{(dso_local )?}}void @test_UnionI64x4_(ptr {{.*}} %_1)
|
2018-11-08 19:12:05 +00:00
|
|
|
#[no_mangle]
|
2018-11-14 17:09:54 +00:00
|
|
|
pub fn test_UnionI64x4_(_: UnionI64x4_) { loop {} }
|
2018-11-08 19:12:05 +00:00
|
|
|
|
|
|
|
pub union UnionI64x4I64{ a: i64x4, b: i64 }
|
|
|
|
|
2023-07-27 21:44:13 +00:00
|
|
|
// CHECK: define {{(dso_local )?}}void @test_UnionI64x4I64(ptr {{.*}} %_1)
|
2018-11-08 19:12:05 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub fn test_UnionI64x4I64(_: UnionI64x4I64) { loop {} }
|
|
|
|
|
|
|
|
pub union UnionI64x4Tuple{ a: i64x4, b: (i64, i64, i64, i64) }
|
|
|
|
|
2023-07-27 21:44:13 +00:00
|
|
|
// CHECK: define {{(dso_local )?}}void @test_UnionI64x4Tuple(ptr {{.*}} %_1)
|
2018-11-08 19:12:05 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub fn test_UnionI64x4Tuple(_: UnionI64x4Tuple) { loop {} }
|
|
|
|
|
|
|
|
|
|
|
|
pub union UnionF32{a:f32}
|
|
|
|
|
2023-05-23 13:26:31 +00:00
|
|
|
// CHECK: define {{(dso_local )?}}float @test_UnionF32(float %_1)
|
2018-11-08 19:12:05 +00:00
|
|
|
#[no_mangle]
|
2018-11-14 17:09:54 +00:00
|
|
|
pub fn test_UnionF32(_: UnionF32) -> UnionF32 { loop {} }
|
2018-11-08 19:12:05 +00:00
|
|
|
|
|
|
|
pub union UnionF32F32{a:f32, b:f32}
|
|
|
|
|
2023-05-23 13:26:31 +00:00
|
|
|
// CHECK: define {{(dso_local )?}}float @test_UnionF32F32(float %_1)
|
2018-11-08 19:12:05 +00:00
|
|
|
#[no_mangle]
|
2018-11-14 17:09:54 +00:00
|
|
|
pub fn test_UnionF32F32(_: UnionF32F32) -> UnionF32F32 { loop {} }
|
2018-11-08 19:12:05 +00:00
|
|
|
|
|
|
|
pub union UnionF32U32{a:f32, b:u32}
|
|
|
|
|
2023-05-23 13:26:31 +00:00
|
|
|
// CHECK: define {{(dso_local )?}}i32 @test_UnionF32U32(i32{{( %0)?}})
|
2018-11-08 19:12:05 +00:00
|
|
|
#[no_mangle]
|
2018-11-14 17:09:54 +00:00
|
|
|
pub fn test_UnionF32U32(_: UnionF32U32) -> UnionF32U32 { loop {} }
|
2018-11-08 19:12:05 +00:00
|
|
|
|
|
|
|
pub union UnionU128{a:u128}
|
2023-05-23 13:26:31 +00:00
|
|
|
// CHECK: define {{(dso_local )?}}i128 @test_UnionU128(i128 %_1)
|
2018-11-08 19:12:05 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub fn test_UnionU128(_: UnionU128) -> UnionU128 { loop {} }
|
|
|
|
|
|
|
|
#[repr(C)]
|
2021-12-08 12:01:13 +00:00
|
|
|
pub union CUnionU128{a:u128}
|
2023-07-27 21:44:13 +00:00
|
|
|
// CHECK: define {{(dso_local )?}}void @test_CUnionU128(ptr {{.*}} %_1)
|
2018-11-08 19:12:05 +00:00
|
|
|
#[no_mangle]
|
2021-12-08 12:01:13 +00:00
|
|
|
pub fn test_CUnionU128(_: CUnionU128) { loop {} }
|
2018-11-08 19:12:05 +00:00
|
|
|
|
2018-11-20 11:14:53 +00:00
|
|
|
pub union UnionBool { b:bool }
|
2023-05-23 13:26:31 +00:00
|
|
|
// CHECK: define {{(dso_local )?}}noundef zeroext i1 @test_UnionBool(i8 %b)
|
2018-11-20 11:14:53 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub fn test_UnionBool(b: UnionBool) -> bool { unsafe { b.b } }
|
2023-05-15 19:15:28 +00:00
|
|
|
// CHECK: %_0 = trunc i8 %b to i1
|