diff options
| author | Amanieu d'Antras <amanieu@gmail.com> | 2021-01-03 23:17:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-03 22:17:21 +0000 |
| commit | 5f6e8a261f66de820ea624c70a82b13a42c9343c (patch) | |
| tree | 4219a7394bb8b7440b2cd77579da2a95842b20db /library/stdarch/crates | |
| parent | bd91c5e9cf31d5a6dd0ee4d9bf713c304195ffa5 (diff) | |
| download | rust-5f6e8a261f66de820ea624c70a82b13a42c9343c.tar.gz rust-5f6e8a261f66de820ea624c70a82b13a42c9343c.zip | |
Fix CI failure caused by new warnings (#978)
Diffstat (limited to 'library/stdarch/crates')
| -rw-r--r-- | library/stdarch/crates/core_arch/src/x86/test.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/stdarch/crates/core_arch/src/x86/test.rs b/library/stdarch/crates/core_arch/src/x86/test.rs index 9014d66fd0b..c1f974133c4 100644 --- a/library/stdarch/crates/core_arch/src/x86/test.rs +++ b/library/stdarch/crates/core_arch/src/x86/test.rs @@ -97,7 +97,7 @@ mod x86_polyfill { union A { a: __m128i, b: [i64; 2], - }; + } let mut a = A { a }; a.b[idx as usize] = val; a.a @@ -109,7 +109,7 @@ mod x86_polyfill { union A { a: __m256i, b: [i64; 4], - }; + } let mut a = A { a }; a.b[idx as usize] = val; a.a |
