Skip to content

Commit 461a87b

Browse files
committed
move to array simd
1 parent 5f5ddf8 commit 461a87b

File tree

7 files changed

+118
-1086
lines changed

7 files changed

+118
-1086
lines changed

crates/core_arch/src/macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ macro_rules! static_assert_simm_bits {
5252
macro_rules! types {
5353
($(
5454
$(#[$doc:meta])*
55-
pub struct $name:ident($($fields:tt)*);
55+
pub struct $name:ident($field:tt);
5656
)*) => ($(
5757
$(#[$doc])*
5858
#[derive(Copy, Clone, Debug)]
5959
#[allow(non_camel_case_types)]
6060
#[repr(simd)]
6161
#[allow(clippy::missing_inline_in_public_items)]
62-
pub struct $name($($fields)*);
62+
pub struct $name($field);
6363
)*)
6464
}
6565

0 commit comments

Comments
 (0)