aboutsummaryrefslogtreecommitdiff
path: root/CAndC++.md
diff options
context:
space:
mode:
authorJF Bastien <github@jfbastien.com>2015-06-15 10:56:52 +0200
committerJF Bastien <github@jfbastien.com>2015-06-15 10:56:52 +0200
commita8c69c8871ef56fe3fe64d70956bbadca3bd8aa4 (patch)
tree1ca48c4615d4c6dd07d58160939d112de334c2da /CAndC++.md
parent69d21acd1a3c63d82578efc37805ad071f146ef1 (diff)
downloadnanowasm-design-a8c69c8871ef56fe3fe64d70956bbadca3bd8aa4.tar.gz
Descriptive link names; auto-vectorization later
Diffstat (limited to 'CAndC++.md')
-rw-r--r--CAndC++.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/CAndC++.md b/CAndC++.md
index 7ea4947..f923863 100644
--- a/CAndC++.md
+++ b/CAndC++.md
@@ -38,10 +38,12 @@ greater performance will be added soon after, including:
enable them to have lower runtime overhead.
* Support for [128-bit SIMD](PostMVP.md#fixed-width-SIMD). SIMD will be
- exposed to C/C++ through auto-vectorization, explicit APIs such as
- [this](http://clang.llvm.org/docs/LanguageExtensions.html#vectors-and-extended-vectors)
- and [this](https://gcc.gnu.org/onlinedocs/gcc/Vector-Extensions.html),
- and emulated APIs from other platforms such as `<xmmintrin.h>`.
+ exposed to C/C++ though explicit APIs such as [LLVM's vector extensions]
+ and [GCC's vector extensions], auto-vectorization, and emulated APIs from
+ other platforms such as `<xmmintrin.h>`.
+
+ [LLVM's vector extensions]: http://clang.llvm.org/docs/LanguageExtensions.html#vectors-and-extended-vectors
+ [GCC's vector extensions]: https://gcc.gnu.org/onlinedocs/gcc/Vector-Extensions.html
### APIs