[Mlir-commits] [mlir] [MLIR][WASM] Introduce an importer for Wasm binaries (PR #152131)
Kazu Hirata
llvmlistbot at llvm.org
Fri Aug 15 07:29:29 PDT 2025
kazutakahirata wrote:
> I also see a lot of warnings when building right now, is it because you implemented the structure and will use the code later? For example:
>
> ```
> lib/Target/Wasm/TranslateFromWasm.cpp:292:33: warning: private field 'symbols' is not used [-Wunused-private-field]
> 292 | WasmModuleSymbolTables const &symbols;
> ```
@flemairen6 @joker-eph I've landed f4bc3151bb716c434a6c47c80b4e53e8f773bc85 to fix the warnings from this PR for now. I used `[[maybe_unused]]`, assuming that you were going to use the unused symbols later. If you don't need them, I am happy to remove them instead.
https://github.com/llvm/llvm-project/pull/152131
More information about the Mlir-commits
mailing list