about summary refs log tree commit diff
path: root/src/librustc_data_structures/stable_hasher.rs
AgeCommit message (Collapse)AuthorLines
2016-12-30Fix rebase fallout and compilation fixesest31-2/+3
2016-12-15Use StableHasher everywhereAriel Ben-Yehuda-0/+176
The standard implementations of Hasher have architecture-dependent results when hashing integers. This causes problems when the hashes are stored within metadata - metadata written by one host architecture can't be read by another. To fix that, implement an architecture-independent StableHasher and use it in all places an architecture-independent hasher is needed. Fixes #38177.