Skip to content

Commit 5395f9b

Browse files
authored
Fix CI failure caused by new warnings (rust-lang#978)
1 parent 760e0b6 commit 5395f9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/core_arch/src/x86/test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ mod x86_polyfill {
9797
union A {
9898
a: __m128i,
9999
b: [i64; 2],
100-
};
100+
}
101101
let mut a = A { a };
102102
a.b[idx as usize] = val;
103103
a.a
@@ -109,7 +109,7 @@ mod x86_polyfill {
109109
union A {
110110
a: __m256i,
111111
b: [i64; 4],
112-
};
112+
}
113113
let mut a = A { a };
114114
a.b[idx as usize] = val;
115115
a.a

0 commit comments

Comments
 (0)