about summary refs log tree commit diff
path: root/compiler/rustc_query_system
diff options
context:
space:
mode:
authorAaron Hill <aa1ronham@gmail.com>2021-01-16 21:37:53 -0500
committerAaron Hill <aa1ronham@gmail.com>2021-01-16 21:37:53 -0500
commit056fbbf7eee75f503c2a037046101df91a2f7e2f (patch)
tree90e0f76c373fd026cd058461a62ec7a1eee70a84 /compiler/rustc_query_system
parent02952372c4149e8f9e1bc60b4f6b30caa4f78bac (diff)
downloadrust-056fbbf7eee75f503c2a037046101df91a2f7e2f.tar.gz
rust-056fbbf7eee75f503c2a037046101df91a2f7e2f.zip
Undo assertion change
Diffstat (limited to 'compiler/rustc_query_system')
-rw-r--r--compiler/rustc_query_system/src/query/plumbing.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/compiler/rustc_query_system/src/query/plumbing.rs b/compiler/rustc_query_system/src/query/plumbing.rs
index 7d49456c3a2..36532135f01 100644
--- a/compiler/rustc_query_system/src/query/plumbing.rs
+++ b/compiler/rustc_query_system/src/query/plumbing.rs
@@ -564,12 +564,7 @@ fn incremental_verify_ich<CTX, K, V: Debug>(
 
     let old_hash = tcx.dep_graph().fingerprint_of(dep_node_index);
 
-    assert!(
-        new_hash == old_hash,
-        "found unstable fingerprints for {:?}: result {:?}",
-        dep_node,
-        result
-    );
+    assert!(new_hash == old_hash, "found unstable fingerprints for {:?}", dep_node,);
 }
 
 fn force_query_with_job<C, CTX>(