We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 221eb1f commit a3b7aadCopy full SHA for a3b7aad
library/stdarch/crates/stdarch-gen-arm/src/load_store_tests.rs
@@ -85,7 +85,7 @@ pub fn generate_load_store_tests(
85
TokenStream::from_str(&PREAMBLE).map_err(|e| format!("Preamble is invalid: {e}"))?;
86
// Only output manual tests for the SVE set
87
let manual_tests = match &load_intrinsics[0].target_features[..] {
88
- [s] if s == "sve" => TokenStream::from_str(&MANUAL_TESTS)
+ [s] if s == "sve" => TokenStream::from_str(MANUAL_TESTS)
89
.map_err(|e| format!("Manual tests are invalid: {e}"))?,
90
_ => quote!(),
91
};
0 commit comments