Skip to content

Commit 056fbbf

Browse files
committed
Undo assertion change
1 parent 0295237 commit 056fbbf

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

compiler/rustc_query_system/src/query/plumbing.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -564,12 +564,7 @@ fn incremental_verify_ich<CTX, K, V: Debug>(
564564

565565
let old_hash = tcx.dep_graph().fingerprint_of(dep_node_index);
566566

567-
assert!(
568-
new_hash == old_hash,
569-
"found unstable fingerprints for {:?}: result {:?}",
570-
dep_node,
571-
result
572-
);
567+
assert!(new_hash == old_hash, "found unstable fingerprints for {:?}", dep_node,);
573568
}
574569

575570
fn force_query_with_job<C, CTX>(

0 commit comments

Comments
 (0)