From: Raphael Isemann Date: Wed, 23 May 2018 20:59:46 +0000 (+0000) Subject: [modules] Mark __wmmintrin_pclmul.h/__wmmintrin_aes.h as textual X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=611c44748fecd28200fda7509eb9a1d6fa243b2b;p=clang [modules] Mark __wmmintrin_pclmul.h/__wmmintrin_aes.h as textual Summary: Since clang r332929 these two headers throw errors when included from somewhere else than their wrapper header. It seems marking them as textual is the best way to fix the builds. Fixes this new module build error: While building module '_Builtin_intrinsics' imported from ...: In file included from :2: In file included from lib/clang/7.0.0/include/immintrin.h:54: In file included from lib/clang/7.0.0/include/wmmintrin.h:29: lib/clang/7.0.0/include/__wmmintrin_aes.h:25:2: error: "Never use <__wmmintrin_aes.h> directly; include instead." #error "Never use <__wmmintrin_aes.h> directly; include instead." Reviewers: rsmith, v.g.vassilev, craig.topper Reviewed By: craig.topper Subscribers: craig.topper, cfe-commits Differential Revision: https://reviews.llvm.org/D47277 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@333123 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Headers/module.modulemap b/lib/Headers/module.modulemap index 0f10dd4c08..b26ff5ebb5 100644 --- a/lib/Headers/module.modulemap +++ b/lib/Headers/module.modulemap @@ -71,6 +71,9 @@ module _Builtin_intrinsics [system] [extern_c] { textual header "sgxintrin.h" textual header "ptwriteintrin.h" + textual header "__wmmintrin_aes.h" + textual header "__wmmintrin_pclmul.h" + explicit module mm_malloc { requires !freestanding header "mm_malloc.h" @@ -136,14 +139,6 @@ module _Builtin_intrinsics [system] [extern_c] { export aes export pclmul } - - explicit module aes { - header "__wmmintrin_aes.h" - } - - explicit module pclmul { - header "__wmmintrin_pclmul.h" - } } explicit module systemz {