diff options
| author | Tim Shen <timshen91@gmail.com> | 2018-04-23 18:47:07 +0000 |
|---|---|---|
| committer | Tim Shen <timshen91@gmail.com> | 2018-04-23 18:47:07 +0000 |
| commit | 6a72ef6c4b7aedda0ee087d0b1c99d3ecb216338 (patch) | |
| tree | 6a8f93e0128d91cd61d3f8b9f8b415f60eb4955d /libcxx/include/module.modulemap | |
| parent | 213aee0bddd0a55f536c337a53619f4b2e1e6f26 (diff) | |
| download | bcm5719-llvm-6a72ef6c4b7aedda0ee087d0b1c99d3ecb216338.tar.gz bcm5719-llvm-6a72ef6c4b7aedda0ee087d0b1c99d3ecb216338.zip | |
[libcxx] implement <experimental/simd> declarations based on P0214R7.
Summary:
The patch includes all declarations, and also implements the following features:
* ABI.
* narrowing-conversion related SFIANE, including simd<> ctors and (static_)simd_cast.
Reviewers: mclow.lists, EricWF
Subscribers: lichray, sanjoy, MaskRay, cfe-commits
Differential Revision: https://reviews.llvm.org/D41148
llvm-svn: 330627
Diffstat (limited to 'libcxx/include/module.modulemap')
| -rw-r--r-- | libcxx/include/module.modulemap | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcxx/include/module.modulemap b/libcxx/include/module.modulemap index 473938656a1..5b3ebf48aa1 100644 --- a/libcxx/include/module.modulemap +++ b/libcxx/include/module.modulemap @@ -550,6 +550,10 @@ module std [system] { header "experimental/regex" export * } + module simd { + header "experimental/simd" + export * + } module set { header "experimental/set" export * |

