diff options
Diffstat (limited to 'src/wasm-s-parser.h')
-rw-r--r-- | src/wasm-s-parser.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wasm-s-parser.h b/src/wasm-s-parser.h index 76a60d7d9..d77062e33 100644 --- a/src/wasm-s-parser.h +++ b/src/wasm-s-parser.h @@ -111,6 +111,7 @@ private: class SExpressionWasmBuilder { Module& wasm; MixedArena& allocator; + IRProfile profile; std::vector<Signature> signatures; std::unordered_map<std::string, size_t> signatureIndices; std::vector<Name> functionNames; @@ -127,6 +128,7 @@ public: // Assumes control of and modifies the input. SExpressionWasmBuilder(Module& wasm, Element& module, + IRProfile profile, Name* moduleName = nullptr); private: |