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 bbdc613 commit f03af1bCopy full SHA for f03af1b
src/librustc/ty/maps/plumbing.rs
@@ -360,7 +360,6 @@ macro_rules! define_maps {
360
use dep_graph::DepNodeColor;
361
match tcx.dep_graph.node_color(&dep_node) {
362
Some(DepNodeColor::Green(dep_node_index)) => {
363
- profq_msg!(tcx, ProfileQueriesMsg::CacheHit);
364
tcx.dep_graph.read_index(dep_node_index);
365
}
366
Some(DepNodeColor::Red) => {
@@ -375,7 +374,6 @@ macro_rules! define_maps {
375
374
match tcx.dep_graph.try_mark_green(tcx, &dep_node) {
376
Some(dep_node_index) => {
377
debug_assert!(tcx.dep_graph.is_green(dep_node_index));
378
379
380
381
None => {
0 commit comments