Skip to content

Commit 5854fcc

Browse files
authored
Merge pull request #1420 from daxpedda/wasm-target-feature-phase-4-5
Stabilize Wasm target features that are in phase 4 and 5
2 parents 5e68de3 + d035af9 commit 5854fcc

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

src/attributes/codegen.md

+14-4
Original file line numberDiff line numberDiff line change
@@ -273,10 +273,20 @@ 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-
`simd128` | [WebAssembly simd proposal][simd128]
279-
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]
284+
285+
[bulk-memory]: https://github.com/WebAssembly/bulk-memory-operations
286+
[extended-const]: https://github.com/WebAssembly/extended-const
287+
[mutable-globals]: https://github.com/WebAssembly/mutable-global
288+
[nontrapping-fptoint]: https://github.com/WebAssembly/nontrapping-float-to-int-conversions
289+
[sign-ext]: https://github.com/WebAssembly/sign-extension-ops
280290
[simd128]: https://github.com/webassembly/simd
281291

282292
### Additional information

0 commit comments

Comments
 (0)