diff options
author | Ben Smith <binjimin@gmail.com> | 2017-06-12 16:10:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-12 16:10:17 -0700 |
commit | 194fbedf2065cc2ac09a4ead997256a8a8f8894a (patch) | |
tree | 472f10d5d4ec335e3adf39a85f49ca73a08a0280 /src/binding-hash.cc | |
parent | 3377747c3fb159826c5bd6d4a70ee5e167c79552 (diff) | |
download | wabt-194fbedf2065cc2ac09a4ead997256a8a8f8894a.tar.gz wabt-194fbedf2065cc2ac09a4ead997256a8a8f8894a.tar.bz2 wabt-194fbedf2065cc2ac09a4ead997256a8a8f8894a.zip |
Use CamelCase names and member functions in ir.h (#492)
* Remove destroy_var; use destructor instead
* Add Var copy/move constructor/assignment operator.
Diffstat (limited to 'src/binding-hash.cc')
-rw-r--r-- | src/binding-hash.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/binding-hash.cc b/src/binding-hash.cc index ec180603..d1297d92 100644 --- a/src/binding-hash.cc +++ b/src/binding-hash.cc @@ -19,6 +19,8 @@ #include <algorithm> #include <vector> +#include "ir.h" + namespace wabt { void BindingHash::FindDuplicates(DuplicateCallback callback) const { @@ -30,6 +32,12 @@ void BindingHash::FindDuplicates(DuplicateCallback callback) const { } } +Index BindingHash::FindIndex(const Var& var) const { + if (var.type == VarType::Name) + return FindIndex(var.name); + return var.index; +} + void BindingHash::CreateDuplicatesVector( ValueTypeVector* out_duplicates) const { // This relies on the fact that in an unordered_multimap, all values with the |