Use FxHash* from data structures not nodemap

This commit is contained in:
Mark Rousskov 2019-11-12 08:04:39 -05:00
parent f577b0ef6e
commit 2ea18337f7

View File

@ -3,11 +3,11 @@ use self::code_stats::CodeStats;
use crate::dep_graph::cgu_reuse_tracker::CguReuseTracker;
use rustc_data_structures::fingerprint::Fingerprint;
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
use crate::lint;
use crate::session::config::{OutputType, PrintRequest, Sanitizer, SwitchWithOptPath};
use crate::session::search_paths::{PathKind, SearchPath};
use crate::util::nodemap::{FxHashMap, FxHashSet};
use crate::util::common::{duration_to_secs_str, ErrorReported};
use rustc_data_structures::base_n;