From 5684bf93788fc8554dacb26b8e04a7b282fb2bb6 Mon Sep 17 00:00:00 2001 From: Tim Northover Date: Thu, 11 May 2017 14:51:43 +0000 Subject: [PATCH] Modules: fix modules build. A recent commit made GlobalVariable.h depend on intrinsics generation, so (I think) it needs to be in the lower-level module. I'll confirm with others, but this should fix the bots. llvm-svn: 302803 --- include/llvm/module.modulemap | 1 + 1 file changed, 1 insertion(+) diff --git a/include/llvm/module.modulemap b/include/llvm/module.modulemap index 59b1f162103..5e15e8d4980 100644 --- a/include/llvm/module.modulemap +++ b/include/llvm/module.modulemap @@ -148,6 +148,7 @@ module LLVM_intrinsic_gen { module IR_Attributes { header "IR/Attributes.h" export * } module IR_CallSite { header "IR/CallSite.h" export * } module IR_ConstantFolder { header "IR/ConstantFolder.h" export * } + module IR_GlobalVariable { header "IR/GlobalVariable.h" export * } module IR_NoFolder { header "IR/NoFolder.h" export * } module IR_Module { header "IR/Module.h" export * } module IR_ModuleSummaryIndex { header "IR/ModuleSummaryIndex.h" export * }