about summary refs log tree commit diff
path: root/compiler/rustc_query_system/src/query/mod.rs
diff options
context:
space:
mode:
authorLi Yuanheng <520dhh@gmail.com>2022-08-27 11:55:38 +0800
committerLi Yuanheng <520dhh@gmail.com>2022-08-31 19:43:23 +0800
commit7ce59ebf496590c8b2ba3693c13e981d369add4b (patch)
tree77c0a238fc2f183c1d359c4a5fc2597651a6fbb8 /compiler/rustc_query_system/src/query/mod.rs
parent166aef90fb7936892af5f0f88335e732d207c731 (diff)
downloadrust-7ce59ebf496590c8b2ba3693c13e981d369add4b.tar.gz
rust-7ce59ebf496590c8b2ba3693c13e981d369add4b.zip
SessionDiagnostic for QueryOverflow error
Diffstat (limited to 'compiler/rustc_query_system/src/query/mod.rs')
-rw-r--r--compiler/rustc_query_system/src/query/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_query_system/src/query/mod.rs b/compiler/rustc_query_system/src/query/mod.rs
index a1f2b081d43..c6197b9fedb 100644
--- a/compiler/rustc_query_system/src/query/mod.rs
+++ b/compiler/rustc_query_system/src/query/mod.rs
@@ -125,6 +125,6 @@ pub trait QueryContext: HasDepContext {
     ) -> R;
 
     fn depth_limit_error(&self) {
-        self.dep_context().sess().fatal("queries overflow the depth limit!");
+        self.dep_context().sess().emit_fatal(crate::error::QueryOverflow);
     }
 }