From af1f9c4b0c4e379d1b91581302e80c5235912e8b Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Mon, 17 Apr 2023 01:12:40 +0900 Subject: [PATCH] llvm/module.modulemap: Add `Demangle` in `LLVM_Utils` --- llvm/include/llvm/module.modulemap | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap index 48ce760..098697e7 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 -- 2.7.4