summaryrefslogtreecommitdiff
path: root/src/tools/wasm2wast.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/wasm2wast.c')
-rw-r--r--src/tools/wasm2wast.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/tools/wasm2wast.c b/src/tools/wasm2wast.c
index 55050f96..05ddcf77 100644
--- a/src/tools/wasm2wast.c
+++ b/src/tools/wasm2wast.c
@@ -173,8 +173,12 @@ int main(int argc, char** argv) {
if (s_generate_names)
result = wasm_generate_names(allocator, &module);
- if (WASM_SUCCEEDED(result))
- result = wasm_apply_names(allocator, &module);
+ if (WASM_SUCCEEDED(result)) {
+ /* TODO(binji): This shouldn't fail; if a name can't be applied
+ * (because the index is invalid, say) it should just be skipped. */
+ WasmResult dummy_result = wasm_apply_names(allocator, &module);
+ WASM_USE(dummy_result);
+ }
if (WASM_SUCCEEDED(result)) {
WasmFileWriter file_writer;