Define a module map entry for ProfileData.

As per Richard Smith, this should help avoid a modules bug exposed
by my r275216 commit:
http://lab.llvm.org:8011/builders/clang-x86_64-linux-selfhost-modules/builds/17560

llvm-svn: 275312
This commit is contained in:
Teresa Johnson 2016-07-13 20:19:09 +00:00
parent b343e465ee
commit d7f329daab

View File

@ -202,6 +202,14 @@ module LLVM_Object {
}
module LLVM_Option { requires cplusplus umbrella "Option" module * { export * } }
module LLVM_ProfileData {
requires cplusplus
umbrella "ProfileData"
module * { export * }
}
module LLVM_TableGen { requires cplusplus umbrella "TableGen" module * { export * } }
module LLVM_Transforms {