diff options
| author | Jacob Kiesel <jake@bitcrafters.co> | 2024-10-01 21:26:03 -0600 |
|---|---|---|
| committer | Jacob Kiesel <jake@bitcrafters.co> | 2024-10-01 21:26:03 -0600 |
| commit | 15efbc6e8d78b257f594ddfb64d215c9ac3bee6d (patch) | |
| tree | 0802d0ceabed507ba321cea1ded722088e2a13dc | |
| parent | 4d9fa6fa775fc70cdaf1996ebe2c5b034d743819 (diff) | |
| download | rust-15efbc6e8d78b257f594ddfb64d215c9ac3bee6d.tar.gz rust-15efbc6e8d78b257f594ddfb64d215c9ac3bee6d.zip | |
Write two newlines intentionally
| -rw-r--r-- | compiler/rustc_interface/src/passes.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs index 7429893b51f..a8afb8c2900 100644 --- a/compiler/rustc_interface/src/passes.rs +++ b/compiler/rustc_interface/src/passes.rs @@ -564,8 +564,7 @@ fn write_out_deps(tcx: TyCtxt<'_>, outputs: &OutputFilenames, out_filenames: &[P write!(file, " checksum:{checksum_hash} file_len:{file_len}") })?; } - writeln!(file)?; - writeln!(file)?; + write!(file, "\n\n")?; } // Emit a fake target for each input file to the compilation. This |
