We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54bbbd1 commit dd81fb3Copy full SHA for dd81fb3
tests/run-pass/simd-intrinsic-generic-elements.rs
@@ -7,10 +7,6 @@ struct i32x2(i32, i32);
7
#[repr(simd)]
8
#[derive(Copy, Clone, Debug, PartialEq)]
9
#[allow(non_camel_case_types)]
10
-struct i32x3(i32, i32, i32);
11
-#[repr(simd)]
12
-#[derive(Copy, Clone, Debug, PartialEq)]
13
-#[allow(non_camel_case_types)]
14
struct i32x4(i32, i32, i32, i32);
15
16
@@ -20,12 +16,10 @@ struct i32x8(i32, i32, i32, i32,
20
21
17
fn main() {
22
18
let _x2 = i32x2(20, 21);
23
- let _x3 = i32x3(30, 31, 32);
24
19
let _x4 = i32x4(40, 41, 42, 43);
25
let _x8 = i32x8(80, 81, 82, 83, 84, 85, 86, 87);
26
27
let _y2 = i32x2(120, 121);
28
- let _y3 = i32x3(130, 131, 132);
29
let _y4 = i32x4(140, 141, 142, 143);
30
let _y8 = i32x8(180, 181, 182, 183, 184, 185, 186, 187);
31
0 commit comments