diff options
Diffstat (limited to 'Meta/generate-libwasm-spec-test.py')
-rw-r--r-- | Meta/generate-libwasm-spec-test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/generate-libwasm-spec-test.py b/Meta/generate-libwasm-spec-test.py index 0cff818d0b..476a8db949 100644 --- a/Meta/generate-libwasm-spec-test.py +++ b/Meta/generate-libwasm-spec-test.py @@ -380,7 +380,7 @@ def main(): with NamedTemporaryFile("w+") as temp: temp.write(mod[1]) temp.flush() - rc = call(["wasm-as", "-n", "-all", temp.name, "-o", outpath]) + rc = call(["wat2wasm", temp.name, "-o", outpath]) if rc != 0: print("Failed to compile", name, "module index", index, "skipping that test", file=stderr) continue |