diff options
Diffstat (limited to 'src/tools/wasm-split/instrumenter.cpp')
-rw-r--r-- | src/tools/wasm-split/instrumenter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tools/wasm-split/instrumenter.cpp b/src/tools/wasm-split/instrumenter.cpp index 7f9ff9c75..86a52688e 100644 --- a/src/tools/wasm-split/instrumenter.cpp +++ b/src/tools/wasm-split/instrumenter.cpp @@ -26,8 +26,7 @@ Instrumenter::Instrumenter(const InstrumenterConfig& config, uint64_t moduleHash) : config(config), moduleHash(moduleHash) {} -void Instrumenter::run(PassRunner* runner, Module* wasm) { - this->runner = runner; +void Instrumenter::run(Module* wasm) { this->wasm = wasm; size_t numFuncs = 0; |