We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcc6c3b commit d372c6cCopy full SHA for d372c6c
compiler/rustc_type_ir/src/search_graph/mod.rs
@@ -1329,7 +1329,11 @@ impl<D: Delegate<Cx = X>, X: Cx> SearchGraph<D> {
1329
// We've evaluated the `entry_node_id` before evaluating this goal. In case
1330
// that node and its parents has not changed, we can reinsert the cache entry
1331
// before starting to reevaluate it.
1332
- if !self.tree.goal_or_parent_was_reevaluated(node_id, &was_reevaluated, entry_node_id) {
+ if !self.tree.goal_or_parent_was_reevaluated(
1333
+ node_id,
1334
+ &was_reevaluated,
1335
+ entry_node_id,
1336
+ ) {
1337
continue;
1338
}
1339
0 commit comments