diff options
author | Marcus Better <marcusb@users.noreply.github.com> | 2022-11-30 16:06:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-30 21:06:56 +0000 |
commit | 93c534c6d77529b2c828d695a57613291a45b587 (patch) | |
tree | 9dd9f2533c3f9428918d15ad880f4002b912df71 /include/wabt/feature.def | |
parent | 5a20630f4ea69c1aa215996b4a14e69865fe6de9 (diff) | |
download | wabt-93c534c6d77529b2c828d695a57613291a45b587.tar.gz wabt-93c534c6d77529b2c828d695a57613291a45b587.tar.bz2 wabt-93c534c6d77529b2c828d695a57613291a45b587.zip |
Implement Relaxed SIMD proposal (#1994)
This adds support for the new opcodes from the Relaxed SIMD proposal
(https://github.com/WebAssembly/relaxed-simd) behind the
"--enable-relaxed-simd" flag.
The exception is the f32x4.relaxed_dot_bf16x8_add_f32x4 instruction
which is not yet implemented.
Diffstat (limited to 'include/wabt/feature.def')
-rw-r--r-- | include/wabt/feature.def | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/wabt/feature.def b/include/wabt/feature.def index 26b1db79..00a4e7f2 100644 --- a/include/wabt/feature.def +++ b/include/wabt/feature.def @@ -39,3 +39,4 @@ WABT_FEATURE(gc, "gc", false, "Garbage c WABT_FEATURE(memory64, "memory64", false, "64-bit memory") WABT_FEATURE(multi_memory, "multi-memory", false, "Multi-memory") WABT_FEATURE(extended_const, "extended-const", false, "Extended constant expressions") +WABT_FEATURE(relaxed_simd, "relaxed-simd", false, "Relaxed SIMD") |