about summary refs log tree commit diff
path: root/compiler/rustc_interface/src/passes.rs
diff options
context:
space:
mode:
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2024-03-07 13:59:50 +0000
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2024-03-11 08:43:50 +0000
commit4279da583ca591ea48c79d13ed1a4d4f83aa6327 (patch)
tree45e5d055efc9888620854b31488f386294138269 /compiler/rustc_interface/src/passes.rs
parenta6d93acf5fdeb020ab86cc0d30d5672c23a7dba6 (diff)
downloadrust-4279da583ca591ea48c79d13ed1a4d4f83aa6327.tar.gz
rust-4279da583ca591ea48c79d13ed1a4d4f83aa6327.zip
Never bail out early while running all the type check queries
Diffstat (limited to 'compiler/rustc_interface/src/passes.rs')
-rw-r--r--compiler/rustc_interface/src/passes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs
index 4b4c1d6cf67..cb05d9d3775 100644
--- a/compiler/rustc_interface/src/passes.rs
+++ b/compiler/rustc_interface/src/passes.rs
@@ -734,7 +734,7 @@ fn analysis(tcx: TyCtxt<'_>, (): ()) -> Result<()> {
     });
 
     // passes are timed inside typeck
-    rustc_hir_analysis::check_crate(tcx)?;
+    rustc_hir_analysis::check_crate(tcx);
 
     sess.time("MIR_borrow_checking", || {
         tcx.hir().par_body_owners(|def_id| {