diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-11-03 16:45:22 +0000 | 
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-12-06 18:42:31 +0000 | 
| commit | 401dd840ff301f13c4006132cc4e4eb80e9702eb (patch) | |
| tree | 0310e12c00d8e27f5f2a16f273b1ff4fb53f426e /compiler/rustc_middle/src | |
| parent | 030545d8c3dd13735b2b88d280705d52a1ebf64d (diff) | |
| download | rust-401dd840ff301f13c4006132cc4e4eb80e9702eb.tar.gz rust-401dd840ff301f13c4006132cc4e4eb80e9702eb.zip | |
Remove all threading through of ErrorGuaranteed from the driver
It was inconsistently done (sometimes even within a single function) and most of the rest of the compiler uses fatal errors instead, which need to be caught using catch_with_exit_code anyway. Using fatal errors instead of ErrorGuaranteed everywhere in the driver simplifies things a bit.
Diffstat (limited to 'compiler/rustc_middle/src')
| -rw-r--r-- | compiler/rustc_middle/src/query/mod.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler/rustc_middle/src/query/mod.rs b/compiler/rustc_middle/src/query/mod.rs index 8861f081485..d8197d6e588 100644 --- a/compiler/rustc_middle/src/query/mod.rs +++ b/compiler/rustc_middle/src/query/mod.rs @@ -276,7 +276,7 @@ rustc_queries! { } /// The root query triggering all analysis passes like typeck or borrowck. - query analysis(key: ()) -> Result<(), ErrorGuaranteed> { + query analysis(key: ()) { eval_always desc { "running analysis passes on this crate" } } | 
