Checking core v0.0.0 (/mnt/extra/rust/library/core) warning: this returns a `Result<_, ()>` --> compiler/rustc_graphviz/src/lib.rs:400:5 | 400 | pub fn new>>(name: Name) -> Result, ()> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(clippy::result_unit_err)]` on by default = help: use a custom `Error` type instead = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_unit_err warning: this expression borrows a reference (`&std::borrow::Cow`) that is immediately dereferenced by the compiler --> compiler/rustc_graphviz/src/lib.rs:515:70 | 515 | EscStr(ref s) => format!("\"{}\"", LabelText::escape_str(&s)), | ^^ help: change this to: `s` | = note: `#[warn(clippy::needless_borrow)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow warning: `rustc_graphviz` (lib) generated 2 warnings warning: unnecessary closure used to substitute value for `Option::None` --> src/tools/cargo/crates/credential/cargo-credential/src/lib.rs:52:17 | 52 | let which = std::env::args() | _________________^ 53 | | .skip(1) 54 | | .skip_while(|arg| arg.starts_with('-')) 55 | | .next() 56 | | .ok_or_else(|| "first argument must be the {action}")?; | |_____________________________________________________________^ | = note: `#[warn(clippy::unnecessary_lazy_evaluations)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_lazy_evaluations help: use `ok_or` instead | 52 ~ let which = std::env::args() 53 + .skip(1) 54 + .skip_while(|arg| arg.starts_with('-')) 55 ~ .next().ok_or("first argument must be the {action}")?; | warning: called `skip_while(

).next()` on an `Iterator` --> src/tools/cargo/crates/credential/cargo-credential/src/lib.rs:52:17 | 52 | let which = std::env::args() | _________________^ 53 | | .skip(1) 54 | | .skip_while(|arg| arg.starts_with('-')) 55 | | .next() | |_______________^ | = note: `#[warn(clippy::skip_while_next)]` on by default = help: this is more succinctly expressed by calling `.find(!

)` instead = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#skip_while_next warning: using `Result.and_then(|x| Ok(y))`, which is more succinctly expressed as `map(|x| y)` --> src/tools/cargo/crates/credential/cargo-credential/src/lib.rs:60:18 | 60 | "get" => credential.get(®istry_name, &api_url).and_then(|token| { | __________________^ 61 | | println!("{}", token); 62 | | Ok(()) 63 | | }), | |__________^ | = note: `#[warn(clippy::bind_instead_of_map)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bind_instead_of_map help: try this | 60 ~ "get" => credential.get(®istry_name, &api_url).map(|token| { 61 | println!("{}", token); 62 ~ () | warning: `cargo-credential` (lib) generated 3 warnings Checking lld-wrapper v0.1.0 (/mnt/extra/rust/src/tools/lld-wrapper) warning: this expression borrows a reference (`&std::path::Path`) that is immediately dereferenced by the compiler --> src/tools/remote-test-server/src/main.rs:131:20 | 131 | let dst = recv(&work, &mut reader); | ^^^^^ help: change this to: `work` | = note: `#[warn(clippy::needless_borrow)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow warning: the operation is ineffective. Consider reducing it to `code` --> src/tools/remote-test-server/src/main.rs:261:9 | 261 | (code >> 0) as u8, | ^^^^^^^^^^^ | = note: `#[warn(clippy::identity_op)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#identity_op warning: the operation is ineffective. Consider reducing it to `n` --> src/tools/remote-test-server/src/main.rs:316:13 | 316 | (n >> 0) as u8, | ^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#identity_op warning: the operation is ineffective. Consider reducing it to `(len[3] as u32)` --> src/tools/remote-test-server/src/main.rs:332:11 | 332 | | ((len[3] as u32) << 0) | ^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#identity_op warning: called `skip(..).next()` on an iterator --> src/tools/tier-check/src/main.rs:28:36 | 28 | .map(|line| line.split('`').skip(1).next().expect("expected target code span")) | ^^^^^^^^^^^^^^^ help: use `nth` instead: `.nth(1)` | = note: `#[warn(clippy::iter_skip_next)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#iter_skip_next warning: `remote-test-server` (bin "remote-test-server") generated 4 warnings warning: `tier-check` (bin "tier-check") generated 1 warning warning: this `else { if .. }` block can be collapsed --> src/tools/remote-test-client/src/main.rs:322:16 | 322 | } else { | ________________^ 323 | | if amt == 0 { 324 | | stderr_done = true; 325 | | } else { ... | 328 | | } 329 | | } | |_________^ | = note: `#[warn(clippy::collapsible_else_if)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_else_if help: collapse nested if block | 322 ~ } else if amt == 0 { 323 + stderr_done = true; 324 + } else { 325 + t!(io::copy(&mut (&mut client).take(amt), &mut stderr)); 326 + t!(stderr.flush()); 327 + } | warning: use of `unwrap_or` followed by a function call --> src/tools/remote-test-client/src/main.rs:61:52 | 61 | let device_address = env::var(REMOTE_ADDR_ENV).unwrap_or(DEFAULT_ADDR.to_string()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|_| DEFAULT_ADDR.to_string())` | = note: `#[warn(clippy::or_fun_call)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call warning: use of `unwrap_or` followed by a function call --> src/tools/remote-test-client/src/main.rs:243:52 | 243 | let device_address = env::var(REMOTE_ADDR_ENV).unwrap_or(DEFAULT_ADDR.to_string()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|_| DEFAULT_ADDR.to_string())` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call warning: use of `unwrap_or` followed by a function call --> src/tools/remote-test-client/src/main.rs:260:52 | 260 | let device_address = env::var(REMOTE_ADDR_ENV).unwrap_or(DEFAULT_ADDR.to_string()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|_| DEFAULT_ADDR.to_string())` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call warning: this expression borrows a reference (`&std::path::Path`) that is immediately dereferenced by the compiler --> src/tools/remote-test-client/src/main.rs:292:14 | 292 | send(&file, &mut client); | ^^^^^ help: change this to: `file` | = note: `#[warn(clippy::needless_borrow)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow warning: the operation is ineffective. Consider reducing it to `(header[4] as u64)` --> src/tools/remote-test-client/src/main.rs:314:15 | 314 | | ((header[4] as u64) << 0); | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(clippy::identity_op)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#identity_op warning: the operation is ineffective. Consider reducing it to `(status[4] as i32)` --> src/tools/remote-test-client/src/main.rs:338:11 | 338 | | ((status[4] as i32) << 0); | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#identity_op warning: the operation is ineffective. Consider reducing it to `amt` --> src/tools/remote-test-client/src/main.rs:352:80 | 352 | t!(dst.write_all(&[(amt >> 24) as u8, (amt >> 16) as u8, (amt >> 8) as u8, (amt >> 0) as u8,])); | ^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#identity_op warning: `remote-test-client` (bin "remote-test-client") generated 8 warnings warning: match expression looks like `matches!` macro --> compiler/rustc_lexer/src/unescape.rs:71:9 | 71 | / match self { 72 | | EscapeError::UnskippedWhitespaceWarning => false, 73 | | EscapeError::MultipleSkippedLinesWarning => false, 74 | | _ => true, 75 | | } | |_________^ help: try this: `!matches!(self, EscapeError::UnskippedWhitespaceWarning | EscapeError::MultipleSkippedLinesWarning)` | = note: `#[warn(clippy::match_like_matches_macro)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_like_matches_macro warning: called `.nth(0)` on a `std::iter::Iterator`, when `.next()` is equivalent --> compiler/rustc_lexer/src/unescape.rs:333:26 | 333 | if let Some(c) = tail.chars().nth(0) { | ^^^^^^^^^^^^^^^^^^^ help: try calling `.next()` instead of `.nth(0)`: `tail.chars().next()` | = note: `#[warn(clippy::iter_nth_zero)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#iter_nth_zero warning: `rustc_lexer` (lib) generated 2 warnings Checking clippy_utils v0.1.57 (/mnt/extra/rust/src/tools/clippy/clippy_utils) Compiling winapi v0.3.9 Compiling indexmap v1.7.0 Checking bitflags v1.2.1 Compiling std v0.0.0 (/mnt/extra/rust/library/std) Compiling crossbeam-utils v0.7.2 Checking proc-macro2 v1.0.24 Compiling log v0.4.14 Compiling memoffset v0.5.5 Compiling crossbeam-epoch v0.8.2 Compiling generic-array v0.14.4 Compiling crossbeam-utils v0.8.3 Compiling num-traits v0.2.12 Compiling num-integer v0.1.43 error: One of the features ld and ld64 must be enabled. --> src/tools/lld-wrapper/src/main.rs:16:1 | 16 | compile_error!("One of the features ld and ld64 must be enabled."); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ error[E0425]: cannot find value `FLAVOR` in this scope --> src/tools/lld-wrapper/src/main.rs:90:17 | 90 | command.arg(FLAVOR); | ^^^^^^ not found in this scope For more information about this error, try `rustc --explain E0425`. error: could not compile `lld-wrapper` due to 2 previous errors warning: build failed, waiting for other jobs to finish... warning: unknown lint: `clippy::invalid_paths` --> src/tools/clippy/clippy_utils/src/paths.rs:71:9 | 71 | #[allow(clippy::invalid_paths)] // internal lints do not know about all external crates | ^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::invalid_regex` | = note: `#[warn(unknown_lints)]` on by default warning: unknown lint: `clippy::invalid_paths` --> src/tools/clippy/clippy_utils/src/paths.rs:132:9 | 132 | #[allow(clippy::invalid_paths)] // internal lints do not know about all external crates | ^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::invalid_regex` warning: unknown lint: `clippy::invalid_paths` --> src/tools/clippy/clippy_utils/src/paths.rs:134:9 | 134 | #[allow(clippy::invalid_paths)] // internal lints do not know about all external crates | ^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::invalid_regex` warning: unknown lint: `clippy::invalid_paths` --> src/tools/clippy/clippy_utils/src/paths.rs:136:9 | 136 | #[allow(clippy::invalid_paths)] // internal lints do not know about all external crates | ^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::invalid_regex` warning: unknown lint: `clippy::invalid_paths` --> src/tools/clippy/clippy_utils/src/paths.rs:138:9 | 138 | #[allow(clippy::invalid_paths)] // internal lints do not know about all external crates | ^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::invalid_regex` warning: unknown lint: `clippy::invalid_paths` --> src/tools/clippy/clippy_utils/src/paths.rs:140:9 | 140 | #[allow(clippy::invalid_paths)] // internal lints do not know about all external crates | ^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::invalid_regex` warning: unknown lint: `clippy::invalid_paths` --> src/tools/clippy/clippy_utils/src/paths.rs:142:9 | 142 | #[allow(clippy::invalid_paths)] // internal lints do not know about all external crates | ^^^^^^^^^^^^^^^^^^^^^ help: did you mean: `clippy::invalid_regex` error[E0463]: can't find crate for `rustc_ast` --> src/tools/clippy/clippy_utils/src/lib.rs:18:1 | 18 | extern crate rustc_ast; | ^^^^^^^^^^^^^^^^^^^^^^^ can't find crate | = help: maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview` For more information about this error, try `rustc --explain E0463`. warning: `clippy_utils` (lib) generated 7 warnings warning: 6 bindings with single-character names in scope --> library/core/src/num/diy_float.rs:26:13 | 26 | let a = self.f >> 32; | ^ 27 | let b = self.f & MASK; | ^ 28 | let c = other.f >> 32; | ^ 29 | let d = other.f & MASK; | ^ ... 35 | let f = ac + (ad >> 32) + (bc >> 32) + (tmp >> 32); | ^ 36 | let e = self.e + other.e + 64; | ^ | = note: `#[warn(clippy::many_single_char_names)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: this `else { if .. }` block can be collapsed --> library/core/src/num/flt2dec/strategy/grisu.rs:151:12 | 151 | } else { | ____________^ 152 | | if x < X6 { 153 | | if x < X5 { (4, X4) } else { (5, X5) } 154 | | } else if x < X8 { ... | 158 | | } 159 | | } | |_____^ | = note: `#[warn(clippy::collapsible_else_if)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_else_if help: collapse nested if block | 151 ~ } else if x < X6 { 152 + if x < X5 { (4, X4) } else { (5, X5) } 153 + } else if x < X8 { 154 + if x < X7 { (6, X6) } else { (7, X7) } 155 + } else { 156 + if x < X9 { (8, X8) } else { (9, X9) } ... warning: this `else { if .. }` block can be collapsed --> library/core/src/num/flt2dec/strategy/grisu.rs:148:16 | 148 | } else { | ________________^ 149 | | if x < X3 { (2, X2) } else { (3, X3) } 150 | | } | |_________^ help: collapse nested if block: `if x < X3 { (2, X2) } else { (3, X3) }` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_else_if warning: this `else { if .. }` block can be collapsed --> library/core/src/num/flt2dec/strategy/grisu.rs:156:16 | 156 | } else { | ________________^ 157 | | if x < X9 { (8, X8) } else { (9, X9) } 158 | | } | |_________^ help: collapse nested if block: `if x < X9 { (8, X8) } else { (9, X9) }` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_else_if warning: 6 bindings with single-character names in scope --> library/core/src/num/flt2dec/strategy/grisu.rs:166:5 | 166 | d: &Decoded, | ^ ... 180 | let v = Fp { f: d.mant, e: d.exp }.normalize_to(plus.e); | ^ ... 228 | let e = -plus.e as usize; // shared exponent | ^ ... 240 | let mut i = 0; | ^ ... 267 | let q = remainder / ten_kappa; | ^ 268 | let r = remainder % ten_kappa; | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 6 bindings with single-character names in scope --> library/core/src/num/flt2dec/strategy/grisu.rs:166:5 | 166 | d: &Decoded, | ^ ... 180 | let v = Fp { f: d.mant, e: d.exp }.normalize_to(plus.e); | ^ ... 228 | let e = -plus.e as usize; // shared exponent | ^ ... 240 | let mut i = 0; | ^ ... 320 | let q = remainder >> e; | ^ 321 | let r = remainder & ((1 << e) - 1); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 6 bindings with single-character names in scope --> library/core/src/num/flt2dec/strategy/grisu.rs:476:5 | 476 | d: &Decoded, | ^ ... 485 | let v = Fp { f: d.mant, e: d.exp }.normalize(); | ^ ... 490 | let e = -v.e as usize; | ^ ... 511 | let mut i = 0; | ^ ... 551 | let q = remainder / ten_kappa; | ^ 552 | let r = remainder % ten_kappa; | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 6 bindings with single-character names in scope --> library/core/src/num/flt2dec/strategy/grisu.rs:476:5 | 476 | d: &Decoded, | ^ ... 485 | let v = Fp { f: d.mant, e: d.exp }.normalize(); | ^ ... 490 | let e = -v.e as usize; | ^ ... 511 | let mut i = 0; | ^ ... 605 | let q = remainder >> e; | ^ 606 | let r = remainder & ((1 << e) - 1); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: this `else { if .. }` block can be collapsed --> library/core/src/num/fmt.rs:34:24 | 34 | } else { | ________________________^ 35 | | if v < 10_000 { 4 } else { 5 } 36 | | } | |_________________^ help: collapse nested if block: `if v < 10_000 { 4 } else { 5 }` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_else_if warning: digits of hex or binary literal not grouped by four --> library/core/src/slice/ascii.rs:159:34 | 159 | const NONASCII_MASK: usize = 0x80808080_80808080u64 as usize; | ^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x8080_8080_8080_8080_u64` | = note: `#[warn(clippy::unusual_byte_groupings)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/str/validations.rs:104:30 | 104 | const NONASCII_MASK: usize = 0x80808080_80808080u64 as usize; | ^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x8080_8080_8080_8080_u64` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:684:13 | 684 | ($smap)(($pmap)(self).into_searcher(haystack)) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = note: `#[warn(clippy::redundant_closure_call)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call = note: this warning originates in the macro `pattern_methods` (in Nightly builds, run with -Z macro-backtrace for more info) warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:684:21 | 684 | ($smap)(($pmap)(self).into_searcher(haystack)) | ^^^^^^^^^^^^^ ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call = note: this warning originates in the macro `pattern_methods` (in Nightly builds, run with -Z macro-backtrace for more info) warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:689:13 | 689 | ($pmap)(self).is_contained_in(haystack) | ^^^^^^^^^^^^^ ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call = note: this warning originates in the macro `pattern_methods` (in Nightly builds, run with -Z macro-backtrace for more info) warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:694:13 | 694 | ($pmap)(self).is_prefix_of(haystack) | ^^^^^^^^^^^^^ ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call = note: this warning originates in the macro `pattern_methods` (in Nightly builds, run with -Z macro-backtrace for more info) warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:699:13 | 699 | ($pmap)(self).strip_prefix_of(haystack) | ^^^^^^^^^^^^^ ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call = note: this warning originates in the macro `pattern_methods` (in Nightly builds, run with -Z macro-backtrace for more info) warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:707:13 | 707 | ($pmap)(self).is_suffix_of(haystack) | ^^^^^^^^^^^^^ ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call = note: this warning originates in the macro `pattern_methods` (in Nightly builds, run with -Z macro-backtrace for more info) warning: try not to call a closure in the expression where it is declared --> library/core/src/str/pattern.rs:715:13 | 715 | ($pmap)(self).strip_suffix_of(haystack) | ^^^^^^^^^^^^^ ... 845 | pattern_methods!(StrSearcher<'a, 'b>, |&s| s, |s| s); | ----------------------------------------------------- in this macro invocation | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_call = note: this warning originates in the macro `pattern_methods` (in Nightly builds, run with -Z macro-backtrace for more info) warning: using tabs in doc comments is not recommended --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx.rs:1522:5 | 1522 | /// `mem_addr` does not need to be aligned on any particular boundary. | ^^^^ help: consider using four spaces per tab | = note: `#[warn(clippy::tabs_in_doc_comments)]` on by default = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#tabs_in_doc_comments warning: 8 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx.rs:2130:5 | 2130 | a: f32, | ^ 2131 | b: f32, | ^ 2132 | c: f32, | ^ 2133 | d: f32, | ^ 2134 | e: f32, | ^ 2135 | f: f32, | ^ 2136 | g: f32, | ^ 2137 | h: f32, | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 8 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx.rs:2279:5 | 2279 | a: f32, | ^ 2280 | b: f32, | ^ 2281 | c: f32, | ^ 2282 | d: f32, | ^ 2283 | e: f32, | ^ 2284 | f: f32, | ^ 2285 | g: f32, | ^ 2286 | h: f32, | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:4276:9 | 4276 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:4480:9 | 4480 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:4640:9 | 4640 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:4881:40 | 4881 | let r = vrndscaleps(a, IMM8, zero, 0b11111111_11111111, _MM_FROUND_CUR_DIRECTION); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5277:9 | 5277 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5534:40 | 5534 | let r = vfixupimmps(a, b, c, IMM8, 0b11111111_11111111, _MM_FROUND_CUR_DIRECTION); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5546:5 | 5546 | a: __m512, | ^ 5547 | k: __mmask16, | ^ 5548 | b: __m512, | ^ 5549 | c: __m512i, | ^ ... 5555 | let r = vfixupimmps(a, b, c, IMM8, k, _MM_FROUND_CUR_DIRECTION); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5567:5 | 5567 | k: __mmask16, | ^ 5568 | a: __m512, | ^ 5569 | b: __m512, | ^ 5570 | c: __m512i, | ^ ... 5576 | let r = vfixupimmpsz(a, b, c, IMM8, k, _MM_FROUND_CUR_DIRECTION); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5604:5 | 5604 | a: __m256, | ^ 5605 | k: __mmask8, | ^ 5606 | b: __m256, | ^ 5607 | c: __m256i, | ^ ... 5613 | let r = vfixupimmps256(a, b, c, IMM8, k); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5625:5 | 5625 | k: __mmask8, | ^ 5626 | a: __m256, | ^ 5627 | b: __m256, | ^ 5628 | c: __m256i, | ^ ... 5634 | let r = vfixupimmpsz256(a, b, c, IMM8, k); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5662:5 | 5662 | a: __m128, | ^ 5663 | k: __mmask8, | ^ 5664 | b: __m128, | ^ 5665 | c: __m128i, | ^ ... 5671 | let r = vfixupimmps128(a, b, c, IMM8, k); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5683:5 | 5683 | k: __mmask8, | ^ 5684 | a: __m128, | ^ 5685 | b: __m128, | ^ 5686 | c: __m128i, | ^ ... 5692 | let r = vfixupimmpsz128(a, b, c, IMM8, k); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5720:5 | 5720 | a: __m512d, | ^ 5721 | k: __mmask8, | ^ 5722 | b: __m512d, | ^ 5723 | c: __m512i, | ^ ... 5729 | let r = vfixupimmpd(a, b, c, IMM8, k, _MM_FROUND_CUR_DIRECTION); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5741:5 | 5741 | k: __mmask8, | ^ 5742 | a: __m512d, | ^ 5743 | b: __m512d, | ^ 5744 | c: __m512i, | ^ ... 5750 | let r = vfixupimmpdz(a, b, c, IMM8, k, _MM_FROUND_CUR_DIRECTION); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5778:5 | 5778 | a: __m256d, | ^ 5779 | k: __mmask8, | ^ 5780 | b: __m256d, | ^ 5781 | c: __m256i, | ^ ... 5787 | let r = vfixupimmpd256(a, b, c, IMM8, k); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5799:5 | 5799 | k: __mmask8, | ^ 5800 | a: __m256d, | ^ 5801 | b: __m256d, | ^ 5802 | c: __m256i, | ^ ... 5808 | let r = vfixupimmpdz256(a, b, c, IMM8, k); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5836:5 | 5836 | a: __m128d, | ^ 5837 | k: __mmask8, | ^ 5838 | b: __m128d, | ^ 5839 | c: __m128i, | ^ ... 5845 | let r = vfixupimmpd128(a, b, c, IMM8, k); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5857:5 | 5857 | k: __mmask8, | ^ 5858 | a: __m128d, | ^ 5859 | b: __m128d, | ^ 5860 | c: __m128i, | ^ ... 5866 | let r = vfixupimmpdz128(a, b, c, IMM8, k); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5919:5 | 5919 | k: __mmask16, | ^ 5920 | a: __m512i, | ^ 5921 | b: __m512i, | ^ 5922 | c: __m512i, | ^ ... 5928 | let r = vpternlogd(a, b, c, IMM8); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:5982:5 | 5982 | k: __mmask8, | ^ 5983 | a: __m256i, | ^ 5984 | b: __m256i, | ^ 5985 | c: __m256i, | ^ ... 5991 | let r = vpternlogd256(a, b, c, IMM8); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:6045:5 | 6045 | k: __mmask8, | ^ 6046 | a: __m128i, | ^ 6047 | b: __m128i, | ^ 6048 | c: __m128i, | ^ ... 6054 | let r = vpternlogd128(a, b, c, IMM8); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:6108:5 | 6108 | k: __mmask8, | ^ 6109 | a: __m512i, | ^ 6110 | b: __m512i, | ^ 6111 | c: __m512i, | ^ ... 6117 | let r = vpternlogq(a, b, c, IMM8); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:6171:5 | 6171 | k: __mmask8, | ^ 6172 | a: __m256i, | ^ 6173 | b: __m256i, | ^ 6174 | c: __m256i, | ^ ... 6180 | let r = vpternlogq256(a, b, c, IMM8); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:6234:5 | 6234 | k: __mmask8, | ^ 6235 | a: __m128i, | ^ 6236 | b: __m128i, | ^ 6237 | c: __m128i, | ^ ... 6243 | let r = vpternlogq128(a, b, c, IMM8); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:6278:9 | 6278 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7604:5 | 7604 | a: __m512, | ^ 7605 | k: __mmask16, | ^ 7606 | b: __m512, | ^ 7607 | c: __m512, | ^ ... 7613 | let r = vfmadd132psround(a, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7632:5 | 7632 | k: __mmask16, | ^ 7633 | a: __m512, | ^ 7634 | b: __m512, | ^ 7635 | c: __m512, | ^ ... 7641 | let r = vfmadd132psround(a, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7661:5 | 7661 | a: __m512, | ^ 7662 | b: __m512, | ^ 7663 | c: __m512, | ^ 7664 | k: __mmask16, | ^ ... 7670 | let r = vfmadd132psround(a, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7716:5 | 7716 | a: __m512d, | ^ 7717 | k: __mmask8, | ^ 7718 | b: __m512d, | ^ 7719 | c: __m512d, | ^ ... 7725 | let r = vfmadd132pdround(a, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7744:5 | 7744 | k: __mmask8, | ^ 7745 | a: __m512d, | ^ 7746 | b: __m512d, | ^ 7747 | c: __m512d, | ^ ... 7753 | let r = vfmadd132pdround(a, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7773:5 | 7773 | a: __m512d, | ^ 7774 | b: __m512d, | ^ 7775 | c: __m512d, | ^ 7776 | k: __mmask8, | ^ ... 7782 | let r = vfmadd132pdround(a, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7829:5 | 7829 | a: __m512, | ^ 7830 | k: __mmask16, | ^ 7831 | b: __m512, | ^ 7832 | c: __m512, | ^ ... 7839 | let r = vfmadd132psround(a, b, sub, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7858:5 | 7858 | k: __mmask16, | ^ 7859 | a: __m512, | ^ 7860 | b: __m512, | ^ 7861 | c: __m512, | ^ ... 7868 | let r = vfmadd132psround(a, b, sub, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7887:5 | 7887 | a: __m512, | ^ 7888 | b: __m512, | ^ 7889 | c: __m512, | ^ 7890 | k: __mmask16, | ^ ... 7898 | let r = vfmadd132psround(a, b, sub, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7945:5 | 7945 | a: __m512d, | ^ 7946 | k: __mmask8, | ^ 7947 | b: __m512d, | ^ 7948 | c: __m512d, | ^ ... 7955 | let r = vfmadd132pdround(a, b, sub, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:7974:5 | 7974 | k: __mmask8, | ^ 7975 | a: __m512d, | ^ 7976 | b: __m512d, | ^ 7977 | c: __m512d, | ^ ... 7984 | let r = vfmadd132pdround(a, b, sub, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8003:5 | 8003 | a: __m512d, | ^ 8004 | b: __m512d, | ^ 8005 | c: __m512d, | ^ 8006 | k: __mmask8, | ^ ... 8014 | let r = vfmadd132pdround(a, b, sub, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8060:5 | 8060 | a: __m512, | ^ 8061 | k: __mmask16, | ^ 8062 | b: __m512, | ^ 8063 | c: __m512, | ^ ... 8069 | let r = vfmaddsub213ps(a, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8088:5 | 8088 | k: __mmask16, | ^ 8089 | a: __m512, | ^ 8090 | b: __m512, | ^ 8091 | c: __m512, | ^ ... 8097 | let r = vfmaddsub213ps(a, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8117:5 | 8117 | a: __m512, | ^ 8118 | b: __m512, | ^ 8119 | c: __m512, | ^ 8120 | k: __mmask16, | ^ ... 8126 | let r = vfmaddsub213ps(a, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8172:5 | 8172 | a: __m512d, | ^ 8173 | k: __mmask8, | ^ 8174 | b: __m512d, | ^ 8175 | c: __m512d, | ^ ... 8181 | let r = vfmaddsub213pd(a, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8200:5 | 8200 | k: __mmask8, | ^ 8201 | a: __m512d, | ^ 8202 | b: __m512d, | ^ 8203 | c: __m512d, | ^ ... 8209 | let r = vfmaddsub213pd(a, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8229:5 | 8229 | a: __m512d, | ^ 8230 | b: __m512d, | ^ 8231 | c: __m512d, | ^ 8232 | k: __mmask8, | ^ ... 8238 | let r = vfmaddsub213pd(a, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8285:5 | 8285 | a: __m512, | ^ 8286 | k: __mmask16, | ^ 8287 | b: __m512, | ^ 8288 | c: __m512, | ^ ... 8295 | let r = vfmaddsub213ps(a, b, sub, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8314:5 | 8314 | k: __mmask16, | ^ 8315 | a: __m512, | ^ 8316 | b: __m512, | ^ 8317 | c: __m512, | ^ ... 8324 | let r = vfmaddsub213ps(a, b, sub, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8343:5 | 8343 | a: __m512, | ^ 8344 | b: __m512, | ^ 8345 | c: __m512, | ^ 8346 | k: __mmask16, | ^ ... 8354 | let r = vfmaddsub213ps(a, b, sub, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8401:5 | 8401 | a: __m512d, | ^ 8402 | k: __mmask8, | ^ 8403 | b: __m512d, | ^ 8404 | c: __m512d, | ^ ... 8411 | let r = vfmaddsub213pd(a, b, sub, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8430:5 | 8430 | k: __mmask8, | ^ 8431 | a: __m512d, | ^ 8432 | b: __m512d, | ^ 8433 | c: __m512d, | ^ ... 8440 | let r = vfmaddsub213pd(a, b, sub, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8459:5 | 8459 | a: __m512d, | ^ 8460 | b: __m512d, | ^ 8461 | c: __m512d, | ^ 8462 | k: __mmask8, | ^ ... 8470 | let r = vfmaddsub213pd(a, b, sub, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8517:5 | 8517 | a: __m512, | ^ 8518 | k: __mmask16, | ^ 8519 | b: __m512, | ^ 8520 | c: __m512, | ^ ... 8527 | let r = vfmadd132psround(sub, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8546:5 | 8546 | k: __mmask16, | ^ 8547 | a: __m512, | ^ 8548 | b: __m512, | ^ 8549 | c: __m512, | ^ ... 8556 | let r = vfmadd132psround(sub, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8575:5 | 8575 | a: __m512, | ^ 8576 | b: __m512, | ^ 8577 | c: __m512, | ^ 8578 | k: __mmask16, | ^ ... 8585 | let r = vfmadd132psround(sub, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8632:5 | 8632 | a: __m512d, | ^ 8633 | k: __mmask8, | ^ 8634 | b: __m512d, | ^ 8635 | c: __m512d, | ^ ... 8643 | let r = vfmadd132pdround(sub, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8662:5 | 8662 | k: __mmask8, | ^ 8663 | a: __m512d, | ^ 8664 | b: __m512d, | ^ 8665 | c: __m512d, | ^ ... 8672 | let r = vfmadd132pdround(sub, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8691:5 | 8691 | a: __m512d, | ^ 8692 | b: __m512d, | ^ 8693 | c: __m512d, | ^ 8694 | k: __mmask8, | ^ ... 8701 | let r = vfmadd132pdround(sub, b, c, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8748:5 | 8748 | a: __m512, | ^ 8749 | k: __mmask16, | ^ 8750 | b: __m512, | ^ 8751 | c: __m512, | ^ ... 8759 | let r = vfmadd132psround(suba, b, subc, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8778:5 | 8778 | k: __mmask16, | ^ 8779 | a: __m512, | ^ 8780 | b: __m512, | ^ 8781 | c: __m512, | ^ ... 8788 | let r = vfmadd132psround(suba, b, subc, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8807:5 | 8807 | a: __m512, | ^ 8808 | b: __m512, | ^ 8809 | c: __m512, | ^ 8810 | k: __mmask16, | ^ ... 8818 | let r = vfmadd132psround(suba, b, subc, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8865:5 | 8865 | a: __m512d, | ^ 8866 | k: __mmask8, | ^ 8867 | b: __m512d, | ^ 8868 | c: __m512d, | ^ ... 8876 | let r = vfmadd132pdround(suba, b, subc, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8895:5 | 8895 | k: __mmask8, | ^ 8896 | a: __m512d, | ^ 8897 | b: __m512d, | ^ 8898 | c: __m512d, | ^ ... 8905 | let r = vfmadd132pdround(suba, b, subc, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:8924:5 | 8924 | a: __m512d, | ^ 8925 | b: __m512d, | ^ 8926 | c: __m512d, | ^ 8927 | k: __mmask8, | ^ ... 8935 | let r = vfmadd132pdround(suba, b, subc, ROUNDING); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:9183:32 | 9183 | let r = vgetexpps(a, zero, 0b11111111_11111111, SAE); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:9294:40 | 9294 | let r = vrndscaleps(a, IMM8, zero, 0b11111111_11111111, SAE); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:9446:35 | 9446 | let r = vscalefps(a, b, zero, 0b11111111_11111111, ROUNDING); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:9601:40 | 9601 | let r = vfixupimmps(a, b, c, IMM8, 0b11111111_11111111, SAE); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:9614:5 | 9614 | a: __m512, | ^ 9615 | k: __mmask16, | ^ 9616 | b: __m512, | ^ 9617 | c: __m512i, | ^ ... 9624 | let r = vfixupimmps(a, b, c, IMM8, k, SAE); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:9637:5 | 9637 | k: __mmask16, | ^ 9638 | a: __m512, | ^ 9639 | b: __m512, | ^ 9640 | c: __m512i, | ^ ... 9647 | let r = vfixupimmpsz(a, b, c, IMM8, k, SAE); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:9682:5 | 9682 | a: __m512d, | ^ 9683 | k: __mmask8, | ^ 9684 | b: __m512d, | ^ 9685 | c: __m512i, | ^ ... 9692 | let r = vfixupimmpd(a, b, c, IMM8, k, SAE); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:9705:5 | 9705 | k: __mmask8, | ^ 9706 | a: __m512d, | ^ 9707 | b: __m512d, | ^ 9708 | c: __m512i, | ^ ... 9715 | let r = vfixupimmpdz(a, b, c, IMM8, k, SAE); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:9748:51 | 9748 | let r = vgetmantps(a, SIGN << 2 | NORM, zero, 0b11111111_11111111, SAE); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:9933:9 | 9933 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:10024:9 | 10024 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:12224:9 | 12224 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:12330:9 | 12330 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:12738:9 | 12738 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:12852:9 | 12852 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:13304:32 | 13304 | let r = vcvtps2dq(a, zero, 0b11111111_11111111, ROUNDING); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:13377:33 | 13377 | let r = vcvtps2udq(a, zero, 0b11111111_11111111, ROUNDING); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:13854:37 | 13854 | let r = vcvtps2ph(a, SAE, zero, 0b11111111_11111111); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:13998:37 | 13998 | let r = vcvtps2ph(a, SAE, zero, 0b11111111_11111111); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:14138:32 | 14138 | let r = vcvtph2ps(a, zero, 0b11111111_11111111, SAE); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:14188:9 | 14188 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:14281:33 | 14281 | let r = vcvttps2dq(a, zero, 0b11111111_11111111, SAE); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:14333:34 | 14333 | let r = vcvttps2udq(a, zero, 0b11111111_11111111, SAE); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:14471:9 | 14471 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:14564:9 | 14564 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:25574:19 | 25574 | transmute(a ^ 0b11111111_11111111) | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:25583:19 | 25583 | transmute(a ^ 0b11111111_11111111) | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:25665:17 | 25665 | let a = a & 0b00000000_11111111; | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b0000_0000_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:25666:17 | 25666 | let b = b & 0b11111111_00000000; | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_0000_0000` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:25678:13 | 25678 | if r == 0b11111111_11111111 { | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:26287:33 | 26287 | pub unsafe fn _mm512_set4_epi64(d: i64, c: i64, b: i64, a: i64) -> __m512i { | ^ ^ ^ ^ 26288 | let r = i64x8::new(d, c, b, a, d, c, b, a); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:26297:34 | 26297 | pub unsafe fn _mm512_setr4_epi64(d: i64, c: i64, b: i64, a: i64) -> __m512i { | ^ ^ ^ ^ 26298 | let r = i64x8::new(a, b, c, d, a, b, c, d); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31603:33 | 31603 | pub unsafe fn _mm_mask_fmadd_ss(a: __m128, k: __mmask8, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 31610 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31620:34 | 31620 | pub unsafe fn _mm_maskz_fmadd_ss(k: __mmask8, a: __m128, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 31628 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31638:34 | 31638 | pub unsafe fn _mm_mask3_fmadd_ss(a: __m128, b: __m128, c: __m128, k: __mmask8) -> __m128 { | ^ ^ ^ ^ ... 31645 | let r = simd_insert(c, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31655:33 | 31655 | pub unsafe fn _mm_mask_fmadd_sd(a: __m128d, k: __mmask8, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 31662 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31672:34 | 31672 | pub unsafe fn _mm_maskz_fmadd_sd(k: __mmask8, a: __m128d, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 31680 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31690:34 | 31690 | pub unsafe fn _mm_mask3_fmadd_sd(a: __m128d, b: __m128d, c: __m128d, k: __mmask8) -> __m128d { | ^ ^ ^ ^ ... 31697 | let r = simd_insert(c, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31707:33 | 31707 | pub unsafe fn _mm_mask_fmsub_ss(a: __m128, k: __mmask8, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 31715 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31725:34 | 31725 | pub unsafe fn _mm_maskz_fmsub_ss(k: __mmask8, a: __m128, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 31734 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31744:34 | 31744 | pub unsafe fn _mm_mask3_fmsub_ss(a: __m128, b: __m128, c: __m128, k: __mmask8) -> __m128 { | ^ ^ ^ ^ ... 31752 | let r = simd_insert(c, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31762:33 | 31762 | pub unsafe fn _mm_mask_fmsub_sd(a: __m128d, k: __mmask8, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 31770 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31780:34 | 31780 | pub unsafe fn _mm_maskz_fmsub_sd(k: __mmask8, a: __m128d, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 31789 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31799:34 | 31799 | pub unsafe fn _mm_mask3_fmsub_sd(a: __m128d, b: __m128d, c: __m128d, k: __mmask8) -> __m128d { | ^ ^ ^ ^ ... 31807 | let r = simd_insert(c, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31817:34 | 31817 | pub unsafe fn _mm_mask_fnmadd_ss(a: __m128, k: __mmask8, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 31825 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31835:35 | 31835 | pub unsafe fn _mm_maskz_fnmadd_ss(k: __mmask8, a: __m128, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 31844 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31854:35 | 31854 | pub unsafe fn _mm_mask3_fnmadd_ss(a: __m128, b: __m128, c: __m128, k: __mmask8) -> __m128 { | ^ ^ ^ ^ ... 31862 | let r = simd_insert(c, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31872:34 | 31872 | pub unsafe fn _mm_mask_fnmadd_sd(a: __m128d, k: __mmask8, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 31880 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31890:35 | 31890 | pub unsafe fn _mm_maskz_fnmadd_sd(k: __mmask8, a: __m128d, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 31899 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31909:35 | 31909 | pub unsafe fn _mm_mask3_fnmadd_sd(a: __m128d, b: __m128d, c: __m128d, k: __mmask8) -> __m128d { | ^ ^ ^ ^ ... 31917 | let r = simd_insert(c, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31927:34 | 31927 | pub unsafe fn _mm_mask_fnmsub_ss(a: __m128, k: __mmask8, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 31936 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31946:35 | 31946 | pub unsafe fn _mm_maskz_fnmsub_ss(k: __mmask8, a: __m128, b: __m128, c: __m128) -> __m128 { | ^ ^ ^ ^ ... 31956 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31966:35 | 31966 | pub unsafe fn _mm_mask3_fnmsub_ss(a: __m128, b: __m128, c: __m128, k: __mmask8) -> __m128 { | ^ ^ ^ ^ ... 31975 | let r = simd_insert(c, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:31985:34 | 31985 | pub unsafe fn _mm_mask_fnmsub_sd(a: __m128d, k: __mmask8, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 31994 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:32004:35 | 32004 | pub unsafe fn _mm_maskz_fnmsub_sd(k: __mmask8, a: __m128d, b: __m128d, c: __m128d) -> __m128d { | ^ ^ ^ ^ ... 32014 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:32024:35 | 32024 | pub unsafe fn _mm_mask3_fnmsub_sd(a: __m128d, b: __m128d, c: __m128d, k: __mmask8) -> __m128d { | ^ ^ ^ ^ ... 32033 | let r = simd_insert(c, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:33747:5 | 33747 | a: __m128, | ^ 33748 | k: __mmask8, | ^ 33749 | b: __m128, | ^ 33750 | c: __m128, | ^ ... 33759 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:33778:5 | 33778 | k: __mmask8, | ^ 33779 | a: __m128, | ^ 33780 | b: __m128, | ^ 33781 | c: __m128, | ^ ... 33791 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:33810:5 | 33810 | a: __m128, | ^ 33811 | b: __m128, | ^ 33812 | c: __m128, | ^ 33813 | k: __mmask8, | ^ ... 33822 | let r = simd_insert(c, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:33869:5 | 33869 | a: __m128d, | ^ 33870 | k: __mmask8, | ^ 33871 | b: __m128d, | ^ 33872 | c: __m128d, | ^ ... 33881 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:33900:5 | 33900 | k: __mmask8, | ^ 33901 | a: __m128d, | ^ 33902 | b: __m128d, | ^ 33903 | c: __m128d, | ^ ... 33913 | let r = simd_insert(a, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:33932:5 | 33932 | a: __m128d, | ^ 33933 | b: __m128d, | ^ 33934 | c: __m128d, | ^ 33935 | k: __mmask8, | ^ ... 33944 | let r = simd_insert(c, 0, fmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:33988:5 | 33988 | a: __m128, | ^ 33989 | k: __mmask8, | ^ 33990 | b: __m128, | ^ 33991 | c: __m128, | ^ ... 34001 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34020:5 | 34020 | k: __mmask8, | ^ 34021 | a: __m128, | ^ 34022 | b: __m128, | ^ 34023 | c: __m128, | ^ ... 34034 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34053:5 | 34053 | a: __m128, | ^ 34054 | b: __m128, | ^ 34055 | c: __m128, | ^ 34056 | k: __mmask8, | ^ ... 34066 | let r = simd_insert(c, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34114:5 | 34114 | a: __m128d, | ^ 34115 | k: __mmask8, | ^ 34116 | b: __m128d, | ^ 34117 | c: __m128d, | ^ ... 34127 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34146:5 | 34146 | k: __mmask8, | ^ 34147 | a: __m128d, | ^ 34148 | b: __m128d, | ^ 34149 | c: __m128d, | ^ ... 34160 | let r = simd_insert(a, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34179:5 | 34179 | a: __m128d, | ^ 34180 | b: __m128d, | ^ 34181 | c: __m128d, | ^ 34182 | k: __mmask8, | ^ ... 34192 | let r = simd_insert(c, 0, fmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34236:5 | 34236 | a: __m128, | ^ 34237 | k: __mmask8, | ^ 34238 | b: __m128, | ^ 34239 | c: __m128, | ^ ... 34249 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34268:5 | 34268 | k: __mmask8, | ^ 34269 | a: __m128, | ^ 34270 | b: __m128, | ^ 34271 | c: __m128, | ^ ... 34282 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34301:5 | 34301 | a: __m128, | ^ 34302 | b: __m128, | ^ 34303 | c: __m128, | ^ 34304 | k: __mmask8, | ^ ... 34314 | let r = simd_insert(c, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34362:5 | 34362 | a: __m128d, | ^ 34363 | k: __mmask8, | ^ 34364 | b: __m128d, | ^ 34365 | c: __m128d, | ^ ... 34375 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34394:5 | 34394 | k: __mmask8, | ^ 34395 | a: __m128d, | ^ 34396 | b: __m128d, | ^ 34397 | c: __m128d, | ^ ... 34408 | let r = simd_insert(a, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34427:5 | 34427 | a: __m128d, | ^ 34428 | b: __m128d, | ^ 34429 | c: __m128d, | ^ 34430 | k: __mmask8, | ^ ... 34440 | let r = simd_insert(c, 0, fnmadd); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34485:5 | 34485 | a: __m128, | ^ 34486 | k: __mmask8, | ^ 34487 | b: __m128, | ^ 34488 | c: __m128, | ^ ... 34499 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34518:5 | 34518 | k: __mmask8, | ^ 34519 | a: __m128, | ^ 34520 | b: __m128, | ^ 34521 | c: __m128, | ^ ... 34533 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34552:5 | 34552 | a: __m128, | ^ 34553 | b: __m128, | ^ 34554 | c: __m128, | ^ 34555 | k: __mmask8, | ^ ... 34566 | let r = simd_insert(c, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34615:5 | 34615 | a: __m128d, | ^ 34616 | k: __mmask8, | ^ 34617 | b: __m128d, | ^ 34618 | c: __m128d, | ^ ... 34629 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34648:5 | 34648 | k: __mmask8, | ^ 34649 | a: __m128d, | ^ 34650 | b: __m128d, | ^ 34651 | c: __m128d, | ^ ... 34663 | let r = simd_insert(a, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34682:5 | 34682 | a: __m128d, | ^ 34683 | b: __m128d, | ^ 34684 | c: __m128d, | ^ 34685 | k: __mmask8, | ^ ... 34696 | let r = simd_insert(c, 0, fnmsub); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34726:5 | 34726 | a: __m128, | ^ 34727 | k: __mmask8, | ^ 34728 | b: __m128, | ^ 34729 | c: __m128i, | ^ ... 34737 | let r = simd_insert(a, 0, fixupimm); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34749:5 | 34749 | k: __mmask8, | ^ 34750 | a: __m128, | ^ 34751 | b: __m128, | ^ 34752 | c: __m128i, | ^ ... 34760 | let r = simd_insert(a, 0, fixupimm); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34790:5 | 34790 | a: __m128d, | ^ 34791 | k: __mmask8, | ^ 34792 | b: __m128d, | ^ 34793 | c: __m128i, | ^ ... 34801 | let r = simd_insert(a, 0, fixupimm); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34813:5 | 34813 | k: __mmask8, | ^ 34814 | a: __m128d, | ^ 34815 | b: __m128d, | ^ 34816 | c: __m128i, | ^ ... 34824 | let r = simd_insert(a, 0, fixupimm); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34861:5 | 34861 | a: __m128, | ^ 34862 | k: __mmask8, | ^ 34863 | b: __m128, | ^ 34864 | c: __m128i, | ^ ... 34871 | let r = vfixupimmss(a, b, c, IMM8, k, SAE); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34886:5 | 34886 | k: __mmask8, | ^ 34887 | a: __m128, | ^ 34888 | b: __m128, | ^ 34889 | c: __m128i, | ^ ... 34896 | let r = vfixupimmssz(a, b, c, IMM8, k, SAE); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34935:5 | 34935 | a: __m128d, | ^ 34936 | k: __mmask8, | ^ 34937 | b: __m128d, | ^ 34938 | c: __m128i, | ^ ... 34945 | let r = vfixupimmsd(a, b, c, IMM8, k, SAE); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512f.rs:34960:5 | 34960 | k: __mmask8, | ^ 34961 | a: __m128d, | ^ 34962 | b: __m128d, | ^ 34963 | c: __m128i, | ^ ... 34970 | let r = vfixupimmsdz(a, b, c, IMM8, k, SAE); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:347:9 | 347 | 0b11111111_11111111_11111111_11111111, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:452:9 | 452 | 0b11111111_11111111_11111111_11111111_11111111_11111111_11111111_11111111, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:542:9 | 542 | 0b11111111_11111111_11111111_11111111, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:642:9 | 642 | 0b11111111_11111111_11111111_11111111_11111111_11111111_11111111_11111111, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:890:9 | 890 | 0b11111111_11111111_11111111_11111111, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:995:9 | 995 | 0b11111111_11111111_11111111_11111111_11111111_11111111_11111111_11111111, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:1085:9 | 1085 | 0b11111111_11111111_11111111_11111111, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:1185:9 | 1185 | 0b11111111_11111111_11111111_11111111_11111111_11111111_11111111_11111111, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:3703:33 | 3703 | let r = vpcmpuw(a, b, IMM8, 0b11111111_11111111_11111111_11111111); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:3737:36 | 3737 | let r = vpcmpuw256(a, b, IMM8, 0b11111111_11111111); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:3809:9 | 3809 | 0b11111111_11111111_11111111_11111111_11111111_11111111_11111111_11111111, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:3844:36 | 3844 | let r = vpcmpub256(a, b, IMM8, 0b11111111_11111111_11111111_11111111); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:3878:36 | 3878 | let r = vpcmpub128(a, b, IMM8, 0b11111111_11111111); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:3912:32 | 3912 | let r = vpcmpw(a, b, IMM8, 0b11111111_11111111_11111111_11111111); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:3946:35 | 3946 | let r = vpcmpw256(a, b, IMM8, 0b11111111_11111111); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:4018:9 | 4018 | 0b11111111_11111111_11111111_11111111_11111111_11111111_11111111_11111111, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:4053:35 | 4053 | let r = vpcmpb256(a, b, IMM8, 0b11111111_11111111_11111111_11111111); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:4087:35 | 4087 | let r = vpcmpb128(a, b, IMM8, 0b11111111_11111111); | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:8266:19 | 8266 | transmute(a ^ 0b11111111_11111111_11111111_11111111) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:8275:19 | 8275 | transmute(a ^ 0b11111111_11111111_11111111_11111111_11111111_11111111_11111111_11111111) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:8453:24 | 8453 | let k: __mmask16 = 0b11111111_11111111 & k as __mmask16; | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:8465:24 | 8465 | let k: __mmask16 = 0b11111111_11111111 & k as __mmask16; | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:8480:9 | 8480 | 0b11111111_11111111_11111111_11111111, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:8518:9 | 8518 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:8590:9 | 8590 | 0b11111111_11111111_11111111_11111111, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111_1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: digits of hex or binary literal not grouped by four --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512bw.rs:8628:9 | 8628 | 0b11111111_11111111, | ^^^^^^^^^^^^^^^^^^^ help: consider: `0b1111_1111_1111_1111` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unusual_byte_groupings warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512gfni.rs:263:5 | 263 | k: __mmask64, | ^ 264 | x: __m512i, | ^ 265 | a: __m512i, | ^ ... 268 | let b = B as u8; | ^ ... 272 | let r = vgf2p8affineqb_512(x, a, b); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512gfni.rs:291:5 | 291 | k: __mmask64, | ^ 292 | x: __m512i, | ^ 293 | a: __m512i, | ^ ... 296 | let b = B as u8; | ^ ... 299 | let r = vgf2p8affineqb_512(x, a, b); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512gfni.rs:336:5 | 336 | k: __mmask32, | ^ 337 | x: __m256i, | ^ 338 | a: __m256i, | ^ ... 341 | let b = B as u8; | ^ ... 345 | let r = vgf2p8affineqb_256(x, a, b); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512gfni.rs:364:5 | 364 | k: __mmask32, | ^ 365 | x: __m256i, | ^ 366 | a: __m256i, | ^ ... 369 | let b = B as u8; | ^ ... 372 | let r = vgf2p8affineqb_256(x, a, b); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512gfni.rs:409:5 | 409 | k: __mmask16, | ^ 410 | x: __m128i, | ^ 411 | a: __m128i, | ^ ... 414 | let b = B as u8; | ^ ... 418 | let r = vgf2p8affineqb_128(x, a, b); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512gfni.rs:437:5 | 437 | k: __mmask16, | ^ 438 | x: __m128i, | ^ 439 | a: __m128i, | ^ ... 442 | let b = B as u8; | ^ ... 445 | let r = vgf2p8affineqb_128(x, a, b); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512gfni.rs:486:5 | 486 | k: __mmask64, | ^ 487 | x: __m512i, | ^ 488 | a: __m512i, | ^ ... 491 | let b = B as u8; | ^ ... 495 | let r = vgf2p8affineinvqb_512(x, a, b); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512gfni.rs:516:5 | 516 | k: __mmask64, | ^ 517 | x: __m512i, | ^ 518 | a: __m512i, | ^ ... 521 | let b = B as u8; | ^ ... 524 | let r = vgf2p8affineinvqb_512(x, a, b); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512gfni.rs:565:5 | 565 | k: __mmask32, | ^ 566 | x: __m256i, | ^ 567 | a: __m256i, | ^ ... 570 | let b = B as u8; | ^ ... 574 | let r = vgf2p8affineinvqb_256(x, a, b); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512gfni.rs:595:5 | 595 | k: __mmask32, | ^ 596 | x: __m256i, | ^ 597 | a: __m256i, | ^ ... 600 | let b = B as u8; | ^ ... 603 | let r = vgf2p8affineinvqb_256(x, a, b); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512gfni.rs:644:5 | 644 | k: __mmask16, | ^ 645 | x: __m128i, | ^ 646 | a: __m128i, | ^ ... 649 | let b = B as u8; | ^ ... 653 | let r = vgf2p8affineinvqb_128(x, a, b); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: 5 bindings with single-character names in scope --> library/core/src/../../stdarch/crates/core_arch/src/x86/avx512gfni.rs:674:5 | 674 | k: __mmask16, | ^ 675 | x: __m128i, | ^ 676 | a: __m128i, | ^ ... 679 | let b = B as u8; | ^ ... 682 | let r = vgf2p8affineinvqb_128(x, a, b); | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#many_single_char_names warning: unknown `doc` attribute `cfg_hide` --> library/core/src/lib.rs:65:9 | 65 | doc(cfg_hide( | _________^ 66 | | not(test), 67 | | any(not(feature = "miri-test-libstd"), test, doctest), 68 | | target_pointer_width = "16", ... | 85 | | target_has_atomic_load_store = "ptr", 86 | | )) | |_____^ | = note: `#[warn(invalid_doc_attributes)]` on by default = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! = note: for more information, see issue #82730 error[E0658]: panicking in constant functions is unstable --> library/core/src/ptr/const_ptr.rs:389:9 | 389 | assert!(0 < pointee_size && pointee_size <= isize::MAX as usize); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `assert` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constant functions is unstable --> library/core/src/panic.rs:28:9 | 28 | $crate::panicking::panic($msg) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/option.rs:743:21 | 743 | None => panic!("called `Option::unwrap()` on a `None` value"), | ----------------------------------------------------- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constant functions is unstable --> library/core/src/panicking.rs:107:9 | 107 | panic_str(msg); | ^^^^^^^^^^^^^^ | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable error[E0658]: panicking in constant functions is unstable --> library/core/src/panic.rs:28:9 | 28 | $crate::panicking::panic($msg) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/fmt/mod.rs:363:13 | 363 | panic!("invalid args"); | ----------------------- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constant functions is unstable --> library/core/src/panic.rs:28:9 | 28 | $crate::panicking::panic($msg) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/time.rs:187:21 | 187 | None => panic!("overflow in Duration::new"), | ----------------------------------- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constant functions is unstable --> library/core/src/macros/mod.rs:215:59 | 215 | ($($arg:tt)*) => (if $crate::cfg!(debug_assertions) { $crate::assert!($($arg)*); }) | ^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/time.rs:480:13 | 480 | debug_assert!(nanos < NANOS_PER_SEC); | ------------------------------------- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::assert` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constant functions is unstable --> library/core/src/macros/mod.rs:215:59 | 215 | ($($arg:tt)*) => (if $crate::cfg!(debug_assertions) { $crate::assert!($($arg)*); }) | ^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/time.rs:535:13 | 535 | debug_assert!(nanos < NANOS_PER_SEC); | ------------------------------------- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::assert` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constant functions is unstable --> library/core/src/macros/mod.rs:215:59 | 215 | ($($arg:tt)*) => (if $crate::cfg!(debug_assertions) { $crate::assert!($($arg)*); }) | ^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/time.rs:586:17 | 586 | debug_assert!(nanos < NANOS_PER_SEC); | ------------------------------------- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::assert` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constant functions is unstable --> library/core/src/macros/mod.rs:215:59 | 215 | ($($arg:tt)*) => (if $crate::cfg!(debug_assertions) { $crate::assert!($($arg)*); }) | ^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/time.rs:638:13 | 638 | debug_assert!(nanos < NANOS_PER_SEC); | ------------------------------------- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::assert` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constant functions is unstable --> library/core/src/time.rs:700:23 | 700 | Err(e) => crate::panicking::panic(e.description()), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable error[E0658]: panicking in constant functions is unstable --> library/core/src/time.rs:761:23 | 761 | Err(e) => crate::panicking::panic(e.description()), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable error[E0658]: panicking in constants is unstable --> library/core/src/panic.rs:28:9 | 28 | $crate::panicking::panic($msg) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/../../stdarch/crates/core_arch/src/macros.rs:8:9 | 8 | assert!(IMM >= MIN && IMM <= MAX, "IMM value not in expected range"); | --------------------------------------------------------------------- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constants is unstable --> library/core/src/panic.rs:28:9 | 28 | $crate::panicking::panic($msg) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/../../stdarch/crates/core_arch/src/x86/macros.rs:8:9 | 8 | / assert!( 9 | | IMM == 4 || IMM == 8 || IMM == 9 || IMM == 10 || IMM == 11, 10 | | "Invalid IMM value" 11 | | ); | |__________- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constants is unstable --> library/core/src/panic.rs:28:9 | 28 | $crate::panicking::panic($msg) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/../../stdarch/crates/core_arch/src/x86/macros.rs:27:9 | 27 | assert!(IMM == 4 || IMM == 8, "Invalid IMM value"); | --------------------------------------------------- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constants is unstable --> library/core/src/panic.rs:28:9 | 28 | $crate::panicking::panic($msg) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/../../stdarch/crates/core_arch/src/x86/macros.rs:43:9 | 43 | assert!(IMM == 4 || IMM == 8 || IMM == 12, "Invalid IMM value"); | ---------------------------------------------------------------- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constants is unstable --> library/core/src/panic.rs:28:9 | 28 | $crate::panicking::panic($msg) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/../../stdarch/crates/core_arch/src/x86/macros.rs:59:9 | 59 | assert!(IMM >= MIN && IMM <= MAX, "IMM value not in expected range"); | --------------------------------------------------------------------- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constants is unstable --> library/core/src/panic.rs:28:9 | 28 | $crate::panicking::panic($msg) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/../../stdarch/crates/core_arch/src/x86/macros.rs:76:9 | 76 | / assert!( 77 | | SCALE == 1 || SCALE == 2 || SCALE == 4 || SCALE == 8, 78 | | "Invalid SCALE value" 79 | | ); | |__________- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constants is unstable --> library/core/src/panic.rs:28:9 | 28 | $crate::panicking::panic($msg) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/../../stdarch/crates/core_arch/src/x86_64/macros.rs:8:9 | 8 | / assert!( 9 | | IMM == 4 || IMM == 8 || IMM == 9 || IMM == 10 || IMM == 11, 10 | | "Invalid IMM value" 11 | | ); | |__________- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0658]: panicking in constants is unstable --> library/core/src/panic.rs:28:9 | 28 | $crate::panicking::panic($msg) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ::: library/core/src/../../stdarch/crates/core_arch/src/x86_64/macros.rs:27:9 | 27 | assert!(IMM == 4 || IMM == 8, "Invalid IMM value"); | --------------------------------------------------- in this macro invocation | = note: see issue #51999 for more information = help: add `#![feature(const_panic)]` to the crate attributes to enable = note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info) For more information about this error, try `rustc --explain E0658`. warning: `core` (lib) generated 209 warnings warning: `core` (lib) generated 209 warnings (209 duplicates) error: build failed