about summary refs log tree commit diff
path: root/src/librustc_data_structures/lib.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <nnethercote@mozilla.com>2016-11-08 14:02:55 +1100
committerNicholas Nethercote <nnethercote@mozilla.com>2016-11-08 15:14:59 +1100
commit00e48affde2d349e3b3bfbd3d0f6afb5d76282a7 (patch)
tree5432c8fcca66a63397e0f16a907bf6db33384365 /src/librustc_data_structures/lib.rs
parenteca1cc957fff157575f485ebfd2aaafb33ee98cb (diff)
downloadrust-00e48affde2d349e3b3bfbd3d0f6afb5d76282a7.tar.gz
rust-00e48affde2d349e3b3bfbd3d0f6afb5d76282a7.zip
Replace FnvHasher use with FxHasher.
This speeds up compilation by 3--6% across most of rustc-benchmarks.
Diffstat (limited to 'src/librustc_data_structures/lib.rs')
-rw-r--r--src/librustc_data_structures/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_data_structures/lib.rs b/src/librustc_data_structures/lib.rs
index fc963dac949..fdcbec6bac1 100644
--- a/src/librustc_data_structures/lib.rs
+++ b/src/librustc_data_structures/lib.rs
@@ -60,6 +60,7 @@ pub mod snapshot_vec;
 pub mod transitive_relation;
 pub mod unify;
 pub mod fnv;
+pub mod fx;
 pub mod tuple_slice;
 pub mod veccell;
 pub mod control_flow_graph;