[llvm] f8c4d70 - Fix modules build after PassManagerImpl.h addition
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 3 14:25:49 PST 2020
Author: Reid Kleckner
Date: 2020-02-03T14:25:43-08:00
New Revision: f8c4d70d11388ddbf3ccc63ca4ea35d09a987d41
URL: https://github.com/llvm/llvm-project/commit/f8c4d70d11388ddbf3ccc63ca4ea35d09a987d41
DIFF: https://github.com/llvm/llvm-project/commit/f8c4d70d11388ddbf3ccc63ca4ea35d09a987d41.diff
LOG: Fix modules build after PassManagerImpl.h addition
This new header needs to be in the LLVM_intrinsics_gen module.
Added:
Modified:
llvm/include/llvm/module.modulemap
Removed:
################################################################################
diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap
index 05de40698e35..1e6c570beddb 100644
--- a/llvm/include/llvm/module.modulemap
+++ b/llvm/include/llvm/module.modulemap
@@ -251,6 +251,7 @@ module LLVM_intrinsic_gen {
module Analysis_DomTreeUpdater { header "Analysis/DomTreeUpdater.h" export * }
module IR_IRBuilder { header "IR/IRBuilder.h" export * }
module IR_PassManager { header "IR/PassManager.h" export * }
+ module IR_PassManagerImpl { header "IR/PassManagerImpl.h" export * }
module IR_PredIteratorCache { header "IR/PredIteratorCache.h" export * }
module IR_Verifier { header "IR/Verifier.h" export * }
module IR_InstIterator { header "IR/InstIterator.h" export * }
More information about the llvm-commits
mailing list