about summary refs log tree commit diff
path: root/tests/codegen/simd/unpadded-simd.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen/simd/unpadded-simd.rs')
-rw-r--r--tests/codegen/simd/unpadded-simd.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codegen/simd/unpadded-simd.rs b/tests/codegen/simd/unpadded-simd.rs
index 66d9298c006..ef067a15702 100644
--- a/tests/codegen/simd/unpadded-simd.rs
+++ b/tests/codegen/simd/unpadded-simd.rs
@@ -7,7 +7,7 @@
 
 #[derive(Copy, Clone)]
 #[repr(simd)]
-pub struct int16x4_t(pub i16, pub i16, pub i16, pub i16);
+pub struct int16x4_t(pub [i16; 4]);
 
 #[derive(Copy, Clone)]
 pub struct int16x4x2_t(pub int16x4_t, pub int16x4_t);