Skip to content

Commit 5b10a34

Browse files
shepmasterAmanieu
authored andcommitted
Fix copy-paste typos for the _x2 and _x3 vector types
1 parent 39e3779 commit 5b10a34

File tree

1 file changed

+12
-12
lines changed
  • crates/core_arch/src/arm_shared/neon

1 file changed

+12
-12
lines changed

crates/core_arch/src/arm_shared/neon/mod.rs

+12-12
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ pub struct float32x4x4_t(
847847
pub float32x4_t,
848848
);
849849

850-
/// ARM-specific type containing four `int64x1_t` vectors.
850+
/// ARM-specific type containing two `int64x1_t` vectors.
851851
#[repr(C)]
852852
#[derive(Copy, Clone, Debug)]
853853
#[cfg_attr(
@@ -859,7 +859,7 @@ pub struct float32x4x4_t(
859859
unstable(feature = "stdarch_arm_neon_intrinsics", issue = "111800")
860860
)]
861861
pub struct int64x1x2_t(pub int64x1_t, pub int64x1_t);
862-
/// ARM-specific type containing four `int64x1_t` vectors.
862+
/// ARM-specific type containing three `int64x1_t` vectors.
863863
#[repr(C)]
864864
#[derive(Copy, Clone, Debug)]
865865
#[cfg_attr(
@@ -884,7 +884,7 @@ pub struct int64x1x3_t(pub int64x1_t, pub int64x1_t, pub int64x1_t);
884884
)]
885885
pub struct int64x1x4_t(pub int64x1_t, pub int64x1_t, pub int64x1_t, pub int64x1_t);
886886

887-
/// ARM-specific type containing four `int64x2_t` vectors.
887+
/// ARM-specific type containing two `int64x2_t` vectors.
888888
#[repr(C)]
889889
#[derive(Copy, Clone, Debug)]
890890
#[cfg_attr(
@@ -896,7 +896,7 @@ pub struct int64x1x4_t(pub int64x1_t, pub int64x1_t, pub int64x1_t, pub int64x1_
896896
unstable(feature = "stdarch_arm_neon_intrinsics", issue = "111800")
897897
)]
898898
pub struct int64x2x2_t(pub int64x2_t, pub int64x2_t);
899-
/// ARM-specific type containing four `int64x2_t` vectors.
899+
/// ARM-specific type containing three `int64x2_t` vectors.
900900
#[repr(C)]
901901
#[derive(Copy, Clone, Debug)]
902902
#[cfg_attr(
@@ -921,7 +921,7 @@ pub struct int64x2x3_t(pub int64x2_t, pub int64x2_t, pub int64x2_t);
921921
)]
922922
pub struct int64x2x4_t(pub int64x2_t, pub int64x2_t, pub int64x2_t, pub int64x2_t);
923923

924-
/// ARM-specific type containing four `uint64x1_t` vectors.
924+
/// ARM-specific type containing two `uint64x1_t` vectors.
925925
#[repr(C)]
926926
#[derive(Copy, Clone, Debug)]
927927
#[cfg_attr(
@@ -933,7 +933,7 @@ pub struct int64x2x4_t(pub int64x2_t, pub int64x2_t, pub int64x2_t, pub int64x2_
933933
unstable(feature = "stdarch_arm_neon_intrinsics", issue = "111800")
934934
)]
935935
pub struct uint64x1x2_t(pub uint64x1_t, pub uint64x1_t);
936-
/// ARM-specific type containing four `uint64x1_t` vectors.
936+
/// ARM-specific type containing three `uint64x1_t` vectors.
937937
#[repr(C)]
938938
#[derive(Copy, Clone, Debug)]
939939
#[cfg_attr(
@@ -963,7 +963,7 @@ pub struct uint64x1x4_t(
963963
pub uint64x1_t,
964964
);
965965

966-
/// ARM-specific type containing four `uint64x2_t` vectors.
966+
/// ARM-specific type containing two `uint64x2_t` vectors.
967967
#[repr(C)]
968968
#[derive(Copy, Clone, Debug)]
969969
#[cfg_attr(
@@ -975,7 +975,7 @@ pub struct uint64x1x4_t(
975975
unstable(feature = "stdarch_arm_neon_intrinsics", issue = "111800")
976976
)]
977977
pub struct uint64x2x2_t(pub uint64x2_t, pub uint64x2_t);
978-
/// ARM-specific type containing four `uint64x2_t` vectors.
978+
/// ARM-specific type containing three `uint64x2_t` vectors.
979979
#[repr(C)]
980980
#[derive(Copy, Clone, Debug)]
981981
#[cfg_attr(
@@ -1005,7 +1005,7 @@ pub struct uint64x2x4_t(
10051005
pub uint64x2_t,
10061006
);
10071007

1008-
/// ARM-specific type containing four `poly64x1_t` vectors.
1008+
/// ARM-specific type containing two `poly64x1_t` vectors.
10091009
#[repr(C)]
10101010
#[derive(Copy, Clone, Debug)]
10111011
#[cfg_attr(
@@ -1017,7 +1017,7 @@ pub struct uint64x2x4_t(
10171017
unstable(feature = "stdarch_arm_neon_intrinsics", issue = "111800")
10181018
)]
10191019
pub struct poly64x1x2_t(pub poly64x1_t, pub poly64x1_t);
1020-
/// ARM-specific type containing four `poly64x1_t` vectors.
1020+
/// ARM-specific type containing three `poly64x1_t` vectors.
10211021
#[repr(C)]
10221022
#[derive(Copy, Clone, Debug)]
10231023
#[cfg_attr(
@@ -1047,7 +1047,7 @@ pub struct poly64x1x4_t(
10471047
pub poly64x1_t,
10481048
);
10491049

1050-
/// ARM-specific type containing four `poly64x2_t` vectors.
1050+
/// ARM-specific type containing two `poly64x2_t` vectors.
10511051
#[repr(C)]
10521052
#[derive(Copy, Clone, Debug)]
10531053
#[cfg_attr(
@@ -1059,7 +1059,7 @@ pub struct poly64x1x4_t(
10591059
unstable(feature = "stdarch_arm_neon_intrinsics", issue = "111800")
10601060
)]
10611061
pub struct poly64x2x2_t(pub poly64x2_t, pub poly64x2_t);
1062-
/// ARM-specific type containing four `poly64x2_t` vectors.
1062+
/// ARM-specific type containing three `poly64x2_t` vectors.
10631063
#[repr(C)]
10641064
#[derive(Copy, Clone, Debug)]
10651065
#[cfg_attr(

0 commit comments

Comments
 (0)