diff options
| author | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2024-03-09 09:29:16 +0100 |
|---|---|---|
| committer | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2024-03-12 05:31:41 +0100 |
| commit | 55ba7a7c622fb1ac95ef05e4a652cedf923a8164 (patch) | |
| tree | c6c98d3a2adfb969613ec3112313f266088e324f /compiler/rustc_interface/src/queries.rs | |
| parent | 1b427b3bf79c2cd48c75915301be3b009b82dea3 (diff) | |
| download | rust-55ba7a7c622fb1ac95ef05e4a652cedf923a8164.tar.gz rust-55ba7a7c622fb1ac95ef05e4a652cedf923a8164.zip | |
Verify that query keys result in unique dep nodes
Diffstat (limited to 'compiler/rustc_interface/src/queries.rs')
| -rw-r--r-- | compiler/rustc_interface/src/queries.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_interface/src/queries.rs b/compiler/rustc_interface/src/queries.rs index da11d090b74..c2218822696 100644 --- a/compiler/rustc_interface/src/queries.rs +++ b/compiler/rustc_interface/src/queries.rs @@ -321,6 +321,8 @@ impl Compiler { } self.sess.time("serialize_dep_graph", || gcx.enter(rustc_incremental::save_dep_graph)); + + gcx.enter(rustc_query_impl::query_key_hash_verify_all); } // The timer's lifetime spans the dropping of `queries`, which contains |
