2019-12-14 03:28:32 +00:00
|
|
|
//@ build-fail
|
|
|
|
|
2025-02-24 16:26:56 +00:00
|
|
|
#![feature(repr_simd, core_intrinsics)]
|
2015-08-13 04:12:36 +00:00
|
|
|
|
|
|
|
#[repr(simd)]
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
#[allow(non_camel_case_types)]
|
2024-08-22 08:28:20 +00:00
|
|
|
struct i32x4([i32; 4]);
|
2015-08-13 04:12:36 +00:00
|
|
|
#[repr(simd)]
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
#[allow(non_camel_case_types)]
|
2024-08-22 08:28:20 +00:00
|
|
|
struct i16x8([i16; 8]);
|
2015-08-13 04:12:36 +00:00
|
|
|
|
2025-02-24 16:26:56 +00:00
|
|
|
use std::intrinsics::simd::{simd_eq, simd_ge, simd_gt, simd_le, simd_lt, simd_ne};
|
2015-08-13 04:12:36 +00:00
|
|
|
|
|
|
|
fn main() {
|
2024-08-22 08:28:20 +00:00
|
|
|
let x = i32x4([0, 0, 0, 0]);
|
2015-08-13 04:12:36 +00:00
|
|
|
|
|
|
|
unsafe {
|
|
|
|
simd_eq::<i32, i32>(0, 0);
|
2015-08-14 22:20:22 +00:00
|
|
|
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_ne::<i32, i32>(0, 0);
|
2015-08-14 22:20:22 +00:00
|
|
|
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_lt::<i32, i32>(0, 0);
|
2015-08-14 22:20:22 +00:00
|
|
|
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_le::<i32, i32>(0, 0);
|
2015-08-14 22:20:22 +00:00
|
|
|
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_gt::<i32, i32>(0, 0);
|
2015-08-14 22:20:22 +00:00
|
|
|
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_ge::<i32, i32>(0, 0);
|
2015-08-14 22:20:22 +00:00
|
|
|
//~^ ERROR expected SIMD input type, found non-SIMD `i32`
|
2015-08-13 04:12:36 +00:00
|
|
|
|
|
|
|
simd_eq::<_, i32>(x, x);
|
2015-08-14 22:20:22 +00:00
|
|
|
//~^ ERROR expected SIMD return type, found non-SIMD `i32`
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_ne::<_, i32>(x, x);
|
2015-08-14 22:20:22 +00:00
|
|
|
//~^ ERROR expected SIMD return type, found non-SIMD `i32`
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_lt::<_, i32>(x, x);
|
2015-08-14 22:20:22 +00:00
|
|
|
//~^ ERROR expected SIMD return type, found non-SIMD `i32`
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_le::<_, i32>(x, x);
|
2015-08-14 22:20:22 +00:00
|
|
|
//~^ ERROR expected SIMD return type, found non-SIMD `i32`
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_gt::<_, i32>(x, x);
|
2015-08-14 22:20:22 +00:00
|
|
|
//~^ ERROR expected SIMD return type, found non-SIMD `i32`
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_ge::<_, i32>(x, x);
|
2015-08-14 22:20:22 +00:00
|
|
|
//~^ ERROR expected SIMD return type, found non-SIMD `i32`
|
2015-08-13 04:12:36 +00:00
|
|
|
|
|
|
|
simd_eq::<_, i16x8>(x, x);
|
2025-02-24 16:26:56 +00:00
|
|
|
//~^ ERROR return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_ne::<_, i16x8>(x, x);
|
2025-02-24 16:26:56 +00:00
|
|
|
//~^ ERROR return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_lt::<_, i16x8>(x, x);
|
2025-02-24 16:26:56 +00:00
|
|
|
//~^ ERROR return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_le::<_, i16x8>(x, x);
|
2025-02-24 16:26:56 +00:00
|
|
|
//~^ ERROR return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_gt::<_, i16x8>(x, x);
|
2025-02-24 16:26:56 +00:00
|
|
|
//~^ ERROR return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
|
2015-08-13 04:12:36 +00:00
|
|
|
simd_ge::<_, i16x8>(x, x);
|
2025-02-24 16:26:56 +00:00
|
|
|
//~^ ERROR return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
|
2015-08-13 04:12:36 +00:00
|
|
|
}
|
|
|
|
}
|