Skip to content

Commit e09dce0

Browse files
committed
Auto merge of #1703 - calebzulawski:master, r=RalfJung
Remove non-power-of-two SIMD vectors Closes rust-lang/rust#81868.
2 parents 54bbbd1 + 053124a commit e09dce0

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6a388dcfbb07b3ca3d4ad3fd3902ac7e3b11b5f6
1+
bb587b1a1737738658d2eaecd4c8c1cab555257a

tests/run-pass/simd-intrinsic-generic-elements.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ struct i32x2(i32, i32);
77
#[repr(simd)]
88
#[derive(Copy, Clone, Debug, PartialEq)]
99
#[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)]
1410
struct i32x4(i32, i32, i32, i32);
1511
#[repr(simd)]
1612
#[derive(Copy, Clone, Debug, PartialEq)]
@@ -20,12 +16,10 @@ struct i32x8(i32, i32, i32, i32,
2016

2117
fn main() {
2218
let _x2 = i32x2(20, 21);
23-
let _x3 = i32x3(30, 31, 32);
2419
let _x4 = i32x4(40, 41, 42, 43);
2520
let _x8 = i32x8(80, 81, 82, 83, 84, 85, 86, 87);
2621

2722
let _y2 = i32x2(120, 121);
28-
let _y3 = i32x3(130, 131, 132);
2923
let _y4 = i32x4(140, 141, 142, 143);
3024
let _y8 = i32x8(180, 181, 182, 183, 184, 185, 186, 187);
3125

0 commit comments

Comments
 (0)