Skip to content

Commit

Permalink
Undo assertion change
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron1011 committed Jan 17, 2021
1 parent 0295237 commit 056fbbf
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions compiler/rustc_query_system/src/query/plumbing.rs
Expand Up @@ -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>(
Expand Down

0 comments on commit 056fbbf

Please sign in to comment.