diff options
author | Alon Zakai <azakai@google.com> | 2022-01-07 11:15:41 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-07 11:15:41 -0800 |
commit | ce8750b7a6b129849a38141f730a25bcbc3712e8 (patch) | |
tree | 8afc5565f17e3372980b1fded9a08d73746d91d6 /test/lit/binary | |
parent | 260b8ee7f2b4f5fb87e72e99b9543eb524d12c7d (diff) | |
download | binaryen-ce8750b7a6b129849a38141f730a25bcbc3712e8.tar.gz binaryen-ce8750b7a6b129849a38141f730a25bcbc3712e8.tar.bz2 binaryen-ce8750b7a6b129849a38141f730a25bcbc3712e8.zip |
Warn about and ignore empty local/param names in name section (#4426)
Fixes the crash in #4418
Also replace the .at() there with better logic to handle imported functions.
See WebAssembly/wabt#1799 for details on why wabt sometimes emits this.
Diffstat (limited to 'test/lit/binary')
-rw-r--r-- | test/lit/binary/empty-param-name.test | 14 | ||||
-rw-r--r-- | test/lit/binary/empty-param-name.test.wasm | bin | 0 -> 54 bytes |
2 files changed, 14 insertions, 0 deletions
diff --git a/test/lit/binary/empty-param-name.test b/test/lit/binary/empty-param-name.test new file mode 100644 index 000000000..2216d0bbb --- /dev/null +++ b/test/lit/binary/empty-param-name.test @@ -0,0 +1,14 @@ +;; Test that we show a warning on an empty local name, and do not crash. +;; +;; The binary contains this, processed by wabt with debug names: +;; +;; (module +;; (func $foo (import "imports" "foo") (param i32))) +;; +;; Wabt emits a name for that parameter, but it is the empty string. See +;; https://github.com/WebAssembly/wabt/issues/1799 + +;; RUN: wasm-opt %s.wasm 2>&1 | filecheck %s + +;; CHECK: warning: empty local name at index 0 in function foo + diff --git a/test/lit/binary/empty-param-name.test.wasm b/test/lit/binary/empty-param-name.test.wasm Binary files differnew file mode 100644 index 000000000..6d08ab93a --- /dev/null +++ b/test/lit/binary/empty-param-name.test.wasm |