diff options
author | Daniel Wirtz <dcode@dcode.io> | 2020-08-13 02:48:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-12 17:48:52 -0700 |
commit | 902469769dee0a3f61e7e5aaca597d3cbac139ad (patch) | |
tree | 024c9e010e9a1d406632994df747a1657eff937a /src/ir/ExpressionManipulator.cpp | |
parent | f067a45c1e88124173af992e66a7125fe6ab366a (diff) | |
download | binaryen-902469769dee0a3f61e7e5aaca597d3cbac139ad.tar.gz binaryen-902469769dee0a3f61e7e5aaca597d3cbac139ad.tar.bz2 binaryen-902469769dee0a3f61e7e5aaca597d3cbac139ad.zip |
Refactor hashing (#3023)
* Unifies internal hashing helpers to naturally integrate with std::hash
* Removes the previous custom implementation
* Computed hashes are now always size_t
* Introduces a hash_combine helper
* Fixes an overwritten partial hash in Relooper.cpp
Diffstat (limited to 'src/ir/ExpressionManipulator.cpp')
-rw-r--r-- | src/ir/ExpressionManipulator.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ir/ExpressionManipulator.cpp b/src/ir/ExpressionManipulator.cpp index a9fd3c599..57048b9bd 100644 --- a/src/ir/ExpressionManipulator.cpp +++ b/src/ir/ExpressionManipulator.cpp @@ -16,7 +16,6 @@ #include "ir/load-utils.h" #include "ir/utils.h" -#include "support/hash.h" namespace wasm { |