[llvm] af1f9c4 - llvm/module.modulemap: Add `Demangle` in `LLVM_Utils`

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 16 09:20:35 PDT 2023


Author: NAKAMURA Takumi
Date: 2023-04-17T01:20:04+09:00
New Revision: af1f9c4b0c4e379d1b91581302e80c5235912e8b

URL: https://github.com/llvm/llvm-project/commit/af1f9c4b0c4e379d1b91581302e80c5235912e8b
DIFF: https://github.com/llvm/llvm-project/commit/af1f9c4b0c4e379d1b91581302e80c5235912e8b.diff

LOG: llvm/module.modulemap: Add `Demangle` in `LLVM_Utils`

Added: 
    

Modified: 
    llvm/include/llvm/module.modulemap

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap
index 48ce760d0f8c..098697e70d0f 100644
--- a/llvm/include/llvm/module.modulemap
+++ b/llvm/include/llvm/module.modulemap
@@ -411,6 +411,15 @@ module LLVM_Utils {
     module * { export * }
   }
 
+  module Demangle {
+    requires cplusplus
+
+    umbrella "Demangle"
+    module * { export * }
+
+    textual header "Demangle/ItaniumNodes.def"
+  }
+
   module Support {
     requires cplusplus
 


        


More information about the llvm-commits mailing list