]> granicus.if.org Git - llvm/commitdiff
Define a module map entry for ProfileData.
authorTeresa Johnson <tejohnson@google.com>
Wed, 13 Jul 2016 20:19:09 +0000 (20:19 +0000)
committerTeresa Johnson <tejohnson@google.com>
Wed, 13 Jul 2016 20:19:09 +0000 (20:19 +0000)
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

include/llvm/module.modulemap

index a906ee1926711bbd5540787e6e179e96d9d87ba6..70fe4c0c36eb6874d41e4336f0185929b0b16743 100644 (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 {