aboutsummaryrefslogtreecommitdiff
path: root/FutureFeatures.md
diff options
context:
space:
mode:
authorJF Bastien <github@jfbastien.com>2017-05-22 22:38:49 -0700
committerGitHub <noreply@github.com>2017-05-22 22:38:49 -0700
commit20c982e8e1f1c2b168464002071a58d1ebddc853 (patch)
treeb6feb8dfb16d5a9262b217c0cdb433c26a8970c7 /FutureFeatures.md
parente435236b8ed2bda5dbddc97c9af5b1dc790e1471 (diff)
downloadnanowasm-design-20c982e8e1f1c2b168464002071a58d1ebddc853.tar.gz
Move SIMD
Now tracked by: https://github.com/WebAssembly/design/issues/1075 As discussed here: https://github.com/WebAssembly/design/issues/1066
Diffstat (limited to 'FutureFeatures.md')
-rw-r--r--FutureFeatures.md13
1 files changed, 0 insertions, 13 deletions
diff --git a/FutureFeatures.md b/FutureFeatures.md
index 3053e6f..eb48059 100644
--- a/FutureFeatures.md
+++ b/FutureFeatures.md
@@ -18,19 +18,6 @@ the [MVP](MVP.md).
This is covered in the [tooling](Tooling.md) section.
-### Fixed-width SIMD
-#### :star:
-
-Support fixed-width SIMD vectors, initially only for 128-bit wide vectors as
-demonstrated in [PNaCl's SIMD][] and [SIMD.js][].
-
-SIMD adds new local types (e.g., `f32x4`) so it has to be part of the core
-semantics. SIMD operators (e.g., `f32x4.add`) could be either builtin
-operators (no different from `i32.add`) or exports of a builtin SIMD module.
-
- [PNaCl's SIMD]: https://developer.chrome.com/native-client/reference/pnacl-c-cpp-language-support#portable-simd-vectors
- [SIMD.js]: https://github.com/tc39/ecmascript_simd
-
### Zero-cost Exception Handling
#### :star: