new clippies (#352)

Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
This commit is contained in:
xermicus
2025-06-28 11:48:24 +02:00
committed by GitHub
parent 7656c6a8b4
commit 486c9c28a1
19 changed files with 37 additions and 42 deletions
+2 -3
View File
@@ -17,12 +17,11 @@ fn main() {
"stdlib.ll",
])
.output()
.unwrap_or_else(|error| panic!("failed to execute llvm-as: {}", error));
.unwrap_or_else(|error| panic!("failed to execute llvm-as: {error}"));
assert!(
output.status.success(),
"failed to assemble the stdlib: {:?}",
output
"failed to assemble the stdlib: {output:?}"
);
let bitcode = fs::read(bitcode_path).expect("bitcode should have been built");