diff options
| author | Tim Northover <tnorthover@apple.com> | 2017-05-11 14:51:43 +0000 |
|---|---|---|
| committer | Tim Northover <tnorthover@apple.com> | 2017-05-11 14:51:43 +0000 |
| commit | a424117501f3e6199f556680b2fdfe2963d958b2 (patch) | |
| tree | 0003c38d6a2dbb8c0a1bc8e946dad3570a79698b | |
| parent | 35f62e32285ad6cb263794a7d0d712855dc578c7 (diff) | |
| download | bcm5719-llvm-a424117501f3e6199f556680b2fdfe2963d958b2.tar.gz bcm5719-llvm-a424117501f3e6199f556680b2fdfe2963d958b2.zip | |
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
| -rw-r--r-- | llvm/include/llvm/module.modulemap | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap index 59b1f162103..5e15e8d4980 100644 --- a/llvm/include/llvm/module.modulemap +++ b/llvm/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 * } |

