From: Teresa Johnson Date: Wed, 13 Jul 2016 20:19:09 +0000 (+0000) Subject: Define a module map entry for ProfileData. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b1c1c15c8fbacf7c9f46398a5850104ee3317a3;p=llvm 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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@275312 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/module.modulemap b/include/llvm/module.modulemap index a906ee19267..70fe4c0c36e 100644 --- a/include/llvm/module.modulemap +++ b/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 {