diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-02-26 01:11:08 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-02-26 01:11:08 +0000 |
commit | f609a1db585a218a480c1b68d38a56beaa10cdd2 (patch) | |
tree | 60659abaec9334234962ae810ab66b29d6a15338 | |
parent | 6539ed75eb533906b1c413efa596c6ef6abb6b5c (diff) | |
download | bcm5719-llvm-f609a1db585a218a480c1b68d38a56beaa10cdd2.tar.gz bcm5719-llvm-f609a1db585a218a480c1b68d38a56beaa10cdd2.zip |
Split StaticAnalyzer module into three to fix a cyclic dependency. Dependencies
are now:
FrontendTool -> StaticAnalyzer/Frontend -> Frontend -> StaticAnalyzer/Core
The final dependency edge here is probably removable: AnalyzerOptions (and
Analyses.def) should probably live in Basic rather than StaticAnalyzer/Core.
llvm-svn: 230600
-rw-r--r-- | clang/include/clang/module.modulemap | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/clang/include/clang/module.modulemap b/clang/include/clang/module.modulemap index 7410c5cd057..29fa008448e 100644 --- a/clang/include/clang/module.modulemap +++ b/clang/include/clang/module.modulemap @@ -98,13 +98,25 @@ module Clang_Rewrite { requires cplusplus umbrella "Rewrite" module * { export * module Clang_Sema { requires cplusplus umbrella "Sema" module * { export * } } module Clang_Serialization { requires cplusplus umbrella "Serialization" module * { export * } } -module Clang_StaticAnalyzer { +module Clang_StaticAnalyzer_Core { requires cplusplus - umbrella "StaticAnalyzer" + umbrella "StaticAnalyzer/Core" textual header "StaticAnalyzer/Core/Analyses.def" module * { export * } } +module Clang_StaticAnalyzer_Checkers { + requires cplusplus + umbrella "StaticAnalyzer/Checkers" + module * { export * } +} + +module Clang_StaticAnalyzer_Frontend { + requires cplusplus + umbrella "StaticAnalyzer/Frontend" + module * { export * } +} + module Clang_Tooling { requires cplusplus umbrella "Tooling" module * { export * } } |