diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/wabt/ir.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/wabt/ir.h b/include/wabt/ir.h index 49b7e2b0..80e1c2a8 100644 --- a/include/wabt/ir.h +++ b/include/wabt/ir.h @@ -25,6 +25,7 @@ #include <string_view> #include <type_traits> #include <vector> +#include <set> #include "wabt/binding-hash.h" #include "wabt/common.h" @@ -1280,6 +1281,12 @@ struct Module { bool exceptions = false; bool threads = false; } features_used; + + // The BinaryReaderIR tracks function references used by the module, whether + // in element segment initializers, global initializers, or functions. wasm2c + // needs to emit wrappers for any functions that might get used as function + // references, and uses this information to limit its output. + std::set<Index> used_func_refs; }; enum class ScriptModuleType { |