summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/feature.def2
-rw-r--r--src/opcode.def2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/feature.def b/src/feature.def
index 4a85f6f2..f6f90f61 100644
--- a/src/feature.def
+++ b/src/feature.def
@@ -26,7 +26,7 @@ WABT_FEATURE(exceptions, "exceptions", false, "Experimen
WABT_FEATURE(mutable_globals, "mutable-globals", true, "Import/export mutable globals")
WABT_FEATURE(sat_float_to_int, "saturating-float-to-int", true, "Saturating float-to-int operators")
WABT_FEATURE(sign_extension, "sign-extension", true, "Sign-extension operators")
-WABT_FEATURE(simd, "simd", false, "SIMD support")
+WABT_FEATURE(simd, "simd", true, "SIMD support")
WABT_FEATURE(threads, "threads", false, "Threading support")
WABT_FEATURE(function_references, "function-references", false, "Typed function references")
WABT_FEATURE(multi_value, "multi-value", true, "Multi-value")
diff --git a/src/opcode.def b/src/opcode.def
index e5335d74..ce80f895 100644
--- a/src/opcode.def
+++ b/src/opcode.def
@@ -261,7 +261,7 @@ WABT_OPCODE(___, ___, ___, ___, 0, 0, 0xd0, RefNull, "ref.null", "")
WABT_OPCODE(___, ___, ___, ___, 0, 0, 0xd1, RefIsNull, "ref.is_null", "")
WABT_OPCODE(___, ___, ___, ___, 0, 0, 0xd2, RefFunc, "ref.func", "")
-/* Simd opcodes (--enable-simd) */
+/* Simd opcodes */
WABT_OPCODE(V128, I32, ___, ___, 16, 0xfd, 0x00, V128Load, "v128.load", "")
WABT_OPCODE(V128, I32, ___, ___, 8, 0xfd, 0x01, V128Load8X8S, "v128.load8x8_s", "")
WABT_OPCODE(V128, I32, ___, ___, 8, 0xfd, 0x02, V128Load8X8U, "v128.load8x8_u", "")