diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-11-26 03:44:47 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-11-26 03:44:47 +0000 |
commit | 77b1b1420205a61caf256adc9bcbf3d09f87f52f (patch) | |
tree | 6f031dadecc1126d4a81b9f653ea6a04cd3f28c1 | |
parent | 410cc893745ee511d51009b712bb987a8a980c24 (diff) | |
download | bcm5719-llvm-77b1b1420205a61caf256adc9bcbf3d09f87f52f.tar.gz bcm5719-llvm-77b1b1420205a61caf256adc9bcbf3d09f87f52f.zip |
Try to make the modules buildbot happy again.
llvm-svn: 222808
-rw-r--r-- | llvm/include/llvm/module.modulemap | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap index 46f6e40041e..99401cc14bb 100644 --- a/llvm/include/llvm/module.modulemap +++ b/llvm/include/llvm/module.modulemap @@ -75,8 +75,8 @@ module LLVM_IR { exclude header "IR/PassManager.h" exclude header "IR/LegacyPassManager.h" - // Exclude this; it's intended for (repeated) textual inclusion. - exclude header "IR/Instruction.def" + // This is intended for (repeated) textual inclusion. + textual header "IR/Instruction.def" } module LLVM_LegacyPassManager { @@ -161,6 +161,18 @@ module LLVM_Utils { // FIXME: Mislayered? exclude header "Support/TargetRegistry.h" + + // These are intended for textual inclusion. + textual header "Support/ELFRelocs/AArch64.def" + textual header "Support/ELFRelocs/ARM.def" + textual header "Support/ELFRelocs/Hexagon.def" + textual header "Support/ELFRelocs/i386.def" + textual header "Support/ELFRelocs/Mips.def" + textual header "Support/ELFRelocs/PowerPC64.def" + textual header "Support/ELFRelocs/PowerPC.def" + textual header "Support/ELFRelocs/Sparc.def" + textual header "Support/ELFRelocs/SystemZ.def" + textual header "Support/ELFRelocs/x86_64.def" } } |