We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f726634 commit a4ad5dbCopy full SHA for a4ad5db
src/librustc_incremental/persist/save.rs
@@ -189,7 +189,8 @@ fn encode_dep_graph(tcx: TyCtxt,
189
190
let total_node_count = serialized_graph.nodes.len();
191
let total_edge_count = serialized_graph.edge_list_data.len();
192
- let (total_edge_reads, total_duplicate_edge_reads) = tcx.dep_graph.edge_deduplication_data();
+ let (total_edge_reads, total_duplicate_edge_reads) =
193
+ tcx.dep_graph.edge_deduplication_data();
194
195
let mut counts: FxHashMap<_, Stat> = FxHashMap();
196
0 commit comments