diff options
author | Teresa Johnson <tejohnson@google.com> | 2016-07-13 20:19:09 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2016-07-13 20:19:09 +0000 |
commit | 56a76961aae9cf7e4bed4647cdc7b247a53dbe0a (patch) | |
tree | e9185698caa4eedd278cd0044541d30148006f74 | |
parent | 562d3aa80a537009f25d338b96ce2533a736d1a5 (diff) | |
download | bcm5719-llvm-56a76961aae9cf7e4bed4647cdc7b247a53dbe0a.tar.gz bcm5719-llvm-56a76961aae9cf7e4bed4647cdc7b247a53dbe0a.zip |
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
-rw-r--r-- | llvm/include/llvm/module.modulemap | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap index a906ee19267..70fe4c0c36e 100644 --- a/llvm/include/llvm/module.modulemap +++ b/llvm/include/llvm/module.modulemap @@ -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 { |