diff options
| author | mark <markm@cs.wisc.edu> | 2022-01-22 18:49:12 -0600 |
|---|---|---|
| committer | mark <markm@cs.wisc.edu> | 2022-03-16 10:35:24 -0500 |
| commit | bb8d4307eb723850e98bcb52d71d860a4aba220a (patch) | |
| tree | f3215627c474542776bdbcb03f634651a89b70f8 /compiler/rustc_incremental/src | |
| parent | 461e8078010433ff7de2db2aaae8a3cfb0847215 (diff) | |
| download | rust-bb8d4307eb723850e98bcb52d71d860a4aba220a.tar.gz rust-bb8d4307eb723850e98bcb52d71d860a4aba220a.zip | |
rustc_error: make ErrorReported impossible to construct
There are a few places were we have to construct it, though, and a few places that are more invasive to change. To do this, we create a constructor with a long obvious name.
Diffstat (limited to 'compiler/rustc_incremental/src')
| -rw-r--r-- | compiler/rustc_incremental/src/persist/fs.rs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/compiler/rustc_incremental/src/persist/fs.rs b/compiler/rustc_incremental/src/persist/fs.rs index ed7ec51d629..b13f0b0d3da 100644 --- a/compiler/rustc_incremental/src/persist/fs.rs +++ b/compiler/rustc_incremental/src/persist/fs.rs @@ -225,12 +225,12 @@ pub fn prepare_session_directory( let crate_dir = match crate_dir.canonicalize() { Ok(v) => v, Err(err) => { - sess.err(&format!( + let reported = sess.err(&format!( "incremental compilation: error canonicalizing path `{}`: {}", crate_dir.display(), err )); - return Err(ErrorGuaranteed); + return Err(reported); } }; @@ -489,14 +489,14 @@ fn create_dir(sess: &Session, path: &Path, dir_tag: &str) -> Result<(), ErrorGua Ok(()) } Err(err) => { - sess.err(&format!( + let reported = sess.err(&format!( "Could not create incremental compilation {} \ directory `{}`: {}", dir_tag, path.display(), err )); - Err(ErrorGuaranteed) + Err(reported) } } } @@ -545,8 +545,7 @@ fn lock_directory( ); } } - err.emit(); - Err(ErrorGuaranteed) + Err(err.emit()) } } } |
