[llvm] r315449 - llvm/module.modulemap: Move Support_TargetRegistry to let LLVMSupport free from MC.

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 11 04:08:50 PDT 2017


Author: chapuni
Date: Wed Oct 11 04:08:50 2017
New Revision: 315449

URL: http://llvm.org/viewvc/llvm-project?rev=315449&view=rev
Log:
llvm/module.modulemap: Move Support_TargetRegistry to let LLVMSupport free from MC.

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=315449&r1=315448&r2=315449&view=diff
==============================================================================
--- llvm/trunk/include/llvm/module.modulemap (original)
+++ llvm/trunk/include/llvm/module.modulemap Wed Oct 11 04:08:50 2017
@@ -226,12 +226,6 @@ module LLVM_LTO { requires cplusplus umb
 module LLVM_MC {
   requires cplusplus
 
-  // FIXME: Mislayered?
-  module Support_TargetRegistry {
-    header "Support/TargetRegistry.h"
-    export *
-  }
-
   umbrella "MC"
   module * { export * }
 
@@ -256,6 +250,13 @@ module LLVM_ProfileData {
   textual header "ProfileData/InstrProfData.inc"
 }
 
+// FIXME: Mislayered?
+module LLVM_Support_TargetRegistry {
+  requires cplusplus
+  header "Support/TargetRegistry.h"
+  export *
+}
+
 module LLVM_TableGen { requires cplusplus umbrella "TableGen" module * { export * } }
 
 module LLVM_Transforms {




More information about the llvm-commits mailing list