Skip to content

Commit 93ab705

Browse files
committed
Print result on unstable fingerprint error
1 parent 7afb325 commit 93ab705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_query_system/src/query/plumbing.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -564,7 +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!(new_hash == old_hash, "found unstable fingerprints for {:?}", dep_node,);
567+
assert!(new_hash == old_hash, "found unstable fingerprints for {:?}: result {:?}", dep_node, result);
568568
}
569569

570570
fn force_query_with_job<C, CTX>(

0 commit comments

Comments
 (0)