[llvm] r358021 - Update modulemaps for Analysis/VecFuncs.def.

Kristina Brooks via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 9 10:05:36 PDT 2019


Author: kristina
Date: Tue Apr  9 10:05:36 2019
New Revision: 358021

URL: http://llvm.org/viewvc/llvm-project?rev=358021&view=rev
Log:
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.


Modified:
    llvm/trunk/include/llvm/module.modulemap

Modified: llvm/trunk/include/llvm/module.modulemap
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/module.modulemap?rev=358021&r1=358020&r2=358021&view=diff
==============================================================================
--- llvm/trunk/include/llvm/module.modulemap (original)
+++ llvm/trunk/include/llvm/module.modulemap Tue Apr  9 10:05:36 2019
@@ -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 {




More information about the llvm-commits mailing list