File tree Expand file tree Collapse file tree 4 files changed +3
-4
lines changed Expand file tree Collapse file tree 4 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ fn json_to_intrinsic(
113
113
Ok ( Intrinsic {
114
114
name,
115
115
arguments,
116
- results : results ,
116
+ results,
117
117
arch_tags : intr. architectures ,
118
118
} )
119
119
}
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ pub fn generate_rust_test_loop<T: IntrinsicTypeDefinition>(
253
253
}
254
254
255
255
/// Generate the specializations (unique sequences of const-generic arguments) for this intrinsic.
256
- fn generate_rust_specializations < ' a > (
256
+ fn generate_rust_specializations (
257
257
constraints : & mut impl Iterator < Item = impl Iterator < Item = i64 > > ,
258
258
) -> Vec < Vec < u8 > > {
259
259
let mut specializations = vec ! [ vec![ ] ] ;
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ pub fn generate_load_store_tests(
85
85
TokenStream :: from_str ( & PREAMBLE ) . map_err ( |e| format ! ( "Preamble is invalid: {e}" ) ) ?;
86
86
// Only output manual tests for the SVE set
87
87
let manual_tests = match & load_intrinsics[ 0 ] . target_features [ ..] {
88
- [ s] if s == "sve" => TokenStream :: from_str ( & MANUAL_TESTS )
88
+ [ s] if s == "sve" => TokenStream :: from_str ( MANUAL_TESTS )
89
89
. map_err ( |e| format ! ( "Manual tests are invalid: {e}" ) ) ?,
90
90
_ => quote ! ( ) ,
91
91
} ;
Original file line number Diff line number Diff line change 22
22
#![ allow(
23
23
clippy:: unwrap_used,
24
24
clippy:: print_stdout,
25
- clippy:: unwrap_used,
26
25
clippy:: shadow_reuse,
27
26
clippy:: cast_possible_wrap,
28
27
clippy:: cast_ptr_alignment,
You can’t perform that action at this time.
0 commit comments