Author: Jonas Devlieghere Date: 2020-08-05T17:32:25+02:00 New Revision: 145694f1ba6688c5c79466490e13e2c3236914d6
URL: https://github.com/llvm/llvm-project/commit/145694f1ba6688c5c79466490e13e2c3236914d6 DIFF: https://github.com/llvm/llvm-project/commit/145694f1ba6688c5c79466490e13e2c3236914d6.diff LOG: [llvm] Add RISCVTargetParser.def to the module map This fixes the modules build. (cherry picked from commit 1b3c25e7b61f44b80788f8758f0d7f0b013135b5) Added: Modified: llvm/include/llvm/module.modulemap Removed: ################################################################################ diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap index b262311a96a0..778a17c8aeee 100644 --- a/llvm/include/llvm/module.modulemap +++ b/llvm/include/llvm/module.modulemap @@ -388,7 +388,7 @@ module LLVM_Utils { umbrella "Support" module * { export * } - + // Exclude this; it should only be used on Windows. exclude header "Support/Windows/WindowsSupport.h" @@ -397,8 +397,9 @@ module LLVM_Utils { exclude header "Support/Solaris/sys/regset.h" // These are intended for textual inclusion. - textual header "Support/ARMTargetParser.def" textual header "Support/AArch64TargetParser.def" + textual header "Support/ARMTargetParser.def" + textual header "Support/RISCVTargetParser.def" textual header "Support/TargetOpcodes.def" textual header "Support/X86TargetParser.def" } _______________________________________________ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
