Skip to content

Commit

Permalink
clang/module.modulemap: Split out Clang_RewriteFrontend from Clang_Re…
Browse files Browse the repository at this point in the history
…write.

FIXME: Both Rewrite(Core) and RewriteFrontend don't cover just under clang/Rewrite. There's no file, though.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@308587 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
chapuni committed Jul 20, 2017
1 parent 4ac59e5 commit 1707e0b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/clang/module.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ module Clang_FrontendTool { requires cplusplus umbrella "FrontendTool" module *
module Clang_Index { requires cplusplus umbrella "Index" module * { export * } }
module Clang_Lex { requires cplusplus umbrella "Lex" module * { export * } }
module Clang_Parse { requires cplusplus umbrella "Parse" module * { export * } }
module Clang_Rewrite { requires cplusplus umbrella "Rewrite" module * { export * } }
module Clang_Rewrite { requires cplusplus umbrella "Rewrite/Core" module * { export * } }
module Clang_RewriteFrontend { requires cplusplus umbrella "Rewrite/Frontend" module * { export * } }
module Clang_Sema { requires cplusplus umbrella "Sema" module * { export * } }
module Clang_Serialization { requires cplusplus umbrella "Serialization" module * { export * } }

Expand Down

0 comments on commit 1707e0b

Please sign in to comment.