[llvm] r315450 - llvm/module.modulemap: Create LLVM_MC_TableGen. It is used by llvm-tblgen.
NAKAMURA Takumi via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 11 04:08:52 PDT 2017
Author: chapuni
Date: Wed Oct 11 04:08:52 2017
New Revision: 315450
URL: http://llvm.org/viewvc/llvm-project?rev=315450&view=rev
Log:
llvm/module.modulemap: Create LLVM_MC_TableGen. It is used by llvm-tblgen.
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=315450&r1=315449&r2=315450&view=diff
==============================================================================
--- llvm/trunk/include/llvm/module.modulemap (original)
+++ llvm/trunk/include/llvm/module.modulemap Wed Oct 11 04:08:52 2017
@@ -233,6 +233,16 @@ module LLVM_MC {
exclude header "MC/MCTargetOptionsCommandFlags.h"
}
+// Used by llvm-tblgen
+module LLVM_MC_TableGen {
+ requires cplusplus
+ module MC_LaneBitmask { header "MC/LaneBitmask.h" export * }
+ module MC_FixedLenDisassembler { header "MC/MCFixedLenDisassembler.h" export * }
+ module MC_InstrItineraries { header "MC/MCInstrItineraries.h" export * }
+ module MC_Schedule { header "MC/MCSchedule.h" export * }
+ module MC_SubtargetFeature { header "MC/SubtargetFeature.h" export * }
+}
+
module LLVM_Object {
requires cplusplus
umbrella "Object"
More information about the llvm-commits
mailing list