Skip to content

Commit

Permalink
Print result on unstable fingerprint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron1011 committed Jan 16, 2021
1 parent 7afb325 commit 93ab705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_query_system/src/query/plumbing.rs
Expand Up @@ -564,7 +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 {:?}", dep_node,);
assert!(new_hash == old_hash, "found unstable fingerprints for {:?}: result {:?}", dep_node, result);
}

fn force_query_with_job<C, CTX>(
Expand Down

0 comments on commit 93ab705

Please sign in to comment.