diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2022-01-19 16:38:58 +0100 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2022-01-19 16:38:58 +0100 |
| commit | cc24cea10123d4de65f155051d2e8b554cb718fd (patch) | |
| tree | a8d6893f0687dd39c3dcc354ccd6595cfa160689 | |
| parent | c6e607a94761c3ec18b8ce2274bc3150573ca4bb (diff) | |
| download | rust-cc24cea10123d4de65f155051d2e8b554cb718fd.tar.gz rust-cc24cea10123d4de65f155051d2e8b554cb718fd.zip | |
Rustfmt
| -rw-r--r-- | src/pretty_clif.rs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/pretty_clif.rs b/src/pretty_clif.rs index 5b77f4ef0c9..ca7116b887d 100644 --- a/src/pretty_clif.rs +++ b/src/pretty_clif.rs @@ -242,12 +242,8 @@ pub(crate) fn write_clif_file<'tcx>( || format!("{}.{}.clif", tcx.symbol_name(instance).name, postfix), |file| { let mut clif = String::new(); - cranelift_codegen::write::decorate_function( - &mut clif_comments, - &mut clif, - func, - ) - .unwrap(); + cranelift_codegen::write::decorate_function(&mut clif_comments, &mut clif, func) + .unwrap(); for flag in isa.flags().iter() { writeln!(file, "set {}", flag)?; |
