[llvm] r260186 - Fix the LLVM_ENABLE_MODULES build after adding TargetOpcodes.def in r259726.

David L Kreitzer via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 8 17:35:45 PST 2016


Author: dlkreitz
Date: Mon Feb  8 19:35:45 2016
New Revision: 260186

URL: http://llvm.org/viewvc/llvm-project?rev=260186&view=rev
Log:
Fix the LLVM_ENABLE_MODULES build after adding TargetOpcodes.def in r259726.

Differential Revision: http://reviews.llvm.org/D17005

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=260186&r1=260185&r2=260186&view=diff
==============================================================================
--- llvm/trunk/include/llvm/module.modulemap (original)
+++ llvm/trunk/include/llvm/module.modulemap Mon Feb  8 19:35:45 2016
@@ -37,6 +37,9 @@ module LLVM_Backend {
   module Target {
     umbrella "Target"
     module * { export * }
+
+    // This is intended for (repeated) textual inclusion.
+    textual header "Target/TargetOpcodes.def"
   }
 
   // FIXME: Where should this go?




More information about the llvm-commits mailing list