diff options
| author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2015-04-01 14:15:35 +0000 |
|---|---|---|
| committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2015-04-01 14:15:35 +0000 |
| commit | cc67344a862573fbb91f0c252b55d65d283cdeca (patch) | |
| tree | 586a74ed3ed6cede8b57812bf9025b10e959d990 /clang/lib/Headers/module.modulemap | |
| parent | 8f4c4d535b5e38be49245ca28ab4b65b02b0c093 (diff) | |
| download | bcm5719-llvm-cc67344a862573fbb91f0c252b55d65d283cdeca.tar.gz bcm5719-llvm-cc67344a862573fbb91f0c252b55d65d283cdeca.zip | |
[SystemZ] Add header files to Makefile / module.modulemap
This should fix build-bot failures after r233804.
The patch also adds a "systemz" feature, and renames the
"transactional-execution" feature to "htm", since it turns
out "-" is not a legal character in module feature names.
llvm-svn: 233807
Diffstat (limited to 'clang/lib/Headers/module.modulemap')
| -rw-r--r-- | clang/lib/Headers/module.modulemap | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/clang/lib/Headers/module.modulemap b/clang/lib/Headers/module.modulemap index 062464ed2e5..bb2ca95212d 100644 --- a/clang/lib/Headers/module.modulemap +++ b/clang/lib/Headers/module.modulemap @@ -169,6 +169,19 @@ module _Builtin_intrinsics [system] [extern_c] { header "__wmmintrin_pclmul.h" } } + + explicit module systemz { + requires systemz + export * + + header "s390intrin.h" + + explicit module htm { + requires htm + header "htmintrin.h" + header "htmxlintrin.h" + } + } } module _Builtin_stddef_max_align_t [system] [extern_c] { |

