diff options
author | Ng Zhi An <zhin@chromium.org> | 2021-09-20 13:39:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-20 13:39:34 -0700 |
commit | 2a67b114e956a5c68c286563ae9b463e1b0a8654 (patch) | |
tree | fe106b58af913da2a8e3fe439adbf0c5bdb1da8a /scripts/fuzz-wasm2wat.sh | |
parent | 6c065379fcc991173fcfd6ed4cfb56cfa98a19d5 (diff) | |
download | wabt-2a67b114e956a5c68c286563ae9b463e1b0a8654.tar.gz wabt-2a67b114e956a5c68c286563ae9b463e1b0a8654.tar.bz2 wabt-2a67b114e956a5c68c286563ae9b463e1b0a8654.zip |
SIMD is now phase 5, enable it by default (#1712)
* SIMD is now phase 5, enable it by default
* Update test flags, rebase test, and docs
Diffstat (limited to 'scripts/fuzz-wasm2wat.sh')
-rwxr-xr-x | scripts/fuzz-wasm2wat.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/fuzz-wasm2wat.sh b/scripts/fuzz-wasm2wat.sh index 5bf7f7c8..2be2b203 100755 --- a/scripts/fuzz-wasm2wat.sh +++ b/scripts/fuzz-wasm2wat.sh @@ -21,6 +21,6 @@ set -o errexit SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" ROOT_DIR="$(dirname "${SCRIPT_DIR}")" -ENABLE="--enable-except --enable-sat --enable-sign --enable-simd --enable-thread --enable-multi --enable-tail --enable-bulk --enable-ref" +ENABLE="--enable-except --enable-sat --enable-sign --enable-thread --enable-multi --enable-tail --enable-bulk --enable-ref" ${FUZZ_BIN_DIR}/afl-fuzz -i fuzz-in/wasm/ -o fuzz-out -- out/gcc-fuzz/Debug/wasm2wat @@ ${ENABLE} |