diff options
| author | Kristina Brooks <notstina@gmail.com> | 2019-04-09 17:05:36 +0000 |
|---|---|---|
| committer | Kristina Brooks <notstina@gmail.com> | 2019-04-09 17:05:36 +0000 |
| commit | a1c44941f36034126c9601fb84f6fd214bb232da (patch) | |
| tree | 1782c4d982741358dc8365f925a701ef2f5dcad6 | |
| parent | 4b2323d1a3d39a35c467a77474d346958aa3eeb7 (diff) | |
| download | bcm5719-llvm-a1c44941f36034126c9601fb84f6fd214bb232da.tar.gz bcm5719-llvm-a1c44941f36034126c9601fb84f6fd214bb232da.zip | |
Update modulemaps for Analysis/VecFuncs.def.
Avoid a warning while building modular LLVM due to a new
textual header missing in the modulemap:
TargetLibraryInfo.cpp:1485:6: warning: missing submodule
'LLVM_Analysis.VecFuncs' [-Wincomplete-umbrella]
Added VecFuncs.def as a textual header in LLVM_Analysis.
llvm-svn: 358021
| -rw-r--r-- | llvm/include/llvm/module.modulemap | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap index a7ecd036369..9c4668e1473 100644 --- a/llvm/include/llvm/module.modulemap +++ b/llvm/include/llvm/module.modulemap @@ -5,6 +5,7 @@ module LLVM_Analysis { // This is intended for (repeated) textual inclusion. textual header "Analysis/TargetLibraryInfo.def" + textual header "Analysis/VecFuncs.def" } module LLVM_AsmParser { |

