2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-08-31 13:02:01 +00:00
|
|
|
#![allow(non_snake_case)]
|
|
|
|
|
2018-03-16 18:42:42 +00:00
|
|
|
// ignore-emscripten FIXME(#45351)
|
|
|
|
|
2017-07-25 02:31:59 +00:00
|
|
|
#![feature(repr_simd, platform_intrinsics)]
|
|
|
|
|
2019-11-06 00:00:00 +00:00
|
|
|
#[repr(C)] //~ WARNING conflicting representation hints
|
2017-07-25 02:31:59 +00:00
|
|
|
#[repr(simd)]
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub struct char3(pub i8, pub i8, pub i8);
|
|
|
|
|
2019-11-06 00:00:00 +00:00
|
|
|
#[repr(C)] //~ WARNING conflicting representation hints
|
2017-07-25 02:31:59 +00:00
|
|
|
#[repr(simd)]
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub struct short3(pub i16, pub i16, pub i16);
|
|
|
|
|
|
|
|
extern "platform-intrinsic" {
|
|
|
|
fn simd_cast<T, U>(x: T) -> U;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let cast: short3 = unsafe { simd_cast(char3(10, -3, -9)) };
|
|
|
|
|
|
|
|
println!("{:?}", cast);
|
|
|
|
}
|