Skip to content

Commit 21012e8

Browse files
committed
Stabilize Wasm relaxed SIMD
1 parent 2e19181 commit 21012e8

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

src/attributes/codegen.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -273,19 +273,21 @@ attempting to use instructions unsupported by the Wasm engine will fail at load
273273
time without the risk of being interpreted in a way different from what the
274274
compiler expected.
275275

276-
Feature | Description
277-
----------------------|-------------------
278-
`bulk-memory` | [WebAssembly bulk memory operations proposal][bulk-memory]
279-
`extended-const` | [WebAssembly extended const expressions proposal][extended-const]
280-
`mutable-globals` | [WebAssembly mutable global proposal][mutable-globals]
281-
`nontrapping-fptoint` | [WebAssembly non-trapping float-to-int conversion proposal][nontrapping-fptoint]
282-
`sign-ext` | [WebAssembly sign extension operators Proposal][sign-ext]
283-
`simd128` | [WebAssembly simd proposal][simd128]
276+
Feature | Implicitly Enables | Description
277+
----------------------|---------------------|-------------------
278+
`bulk-memory` | | [WebAssembly bulk memory operations proposal][bulk-memory]
279+
`extended-const` | | [WebAssembly extended const expressions proposal][extended-const]
280+
`mutable-globals` | | [WebAssembly mutable global proposal][mutable-globals]
281+
`nontrapping-fptoint` | | [WebAssembly non-trapping float-to-int conversion proposal][nontrapping-fptoint]
282+
`relaxed-simd` | `simd128` | [WebAssembly relaxed simd proposal][relaxed-simd]
283+
`sign-ext` | | [WebAssembly sign extension operators Proposal][sign-ext]
284+
`simd128` | | [WebAssembly simd proposal][simd128]
284285

285286
[bulk-memory]: https://github.com/WebAssembly/bulk-memory-operations
286287
[extended-const]: https://github.com/WebAssembly/extended-const
287288
[mutable-globals]: https://github.com/WebAssembly/mutable-global
288289
[nontrapping-fptoint]: https://github.com/WebAssembly/nontrapping-float-to-int-conversions
290+
[relaxed-simd]: https://github.com/WebAssembly/relaxed-simd
289291
[sign-ext]: https://github.com/WebAssembly/sign-extension-ops
290292
[simd128]: https://github.com/webassembly/simd
291293

0 commit comments

Comments
 (0)