diff options
author | Adrian Prantl <aprantl@apple.com> | 2019-01-03 19:30:18 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2019-01-03 19:30:18 +0000 |
commit | 6a1359349664620f3b83f97827b68b262e66517f (patch) | |
tree | d5966b09b0e241c7c823ab38c4e9538b852bf747 | |
parent | 88971f977f4af9028301a3d7b47f237d9e7269ec (diff) | |
download | bcm5719-llvm-6a1359349664620f3b83f97827b68b262e66517f.tar.gz bcm5719-llvm-6a1359349664620f3b83f97827b68b262e66517f.zip |
Reflow module.modulemap for readability
llvm-svn: 350347
-rw-r--r-- | llvm/include/llvm/module.modulemap | 44 |
1 files changed, 37 insertions, 7 deletions
diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap index 325bd168d00..bcc12534ec8 100644 --- a/llvm/include/llvm/module.modulemap +++ b/llvm/include/llvm/module.modulemap @@ -7,7 +7,11 @@ module LLVM_Analysis { textual header "Analysis/TargetLibraryInfo.def" } -module LLVM_AsmParser { requires cplusplus umbrella "AsmParser" module * { export * } } +module LLVM_AsmParser { + requires cplusplus + umbrella "AsmParser" + module * { export * } +} // A module covering CodeGen/ and Target/. These are intertwined // and codependent, and thus notionally form a single module. @@ -36,7 +40,11 @@ module LLVM_Backend_Target { module * { export * } } -module LLVM_Bitcode { requires cplusplus umbrella "Bitcode" module * { export * } } +module LLVM_Bitcode { + requires cplusplus + umbrella "Bitcode" + module * { export * } +} module LLVM_BinaryFormat { @@ -246,9 +254,23 @@ module LLVM_IR { textual header "IR/RuntimeLibcalls.def" } -module LLVM_IRReader { requires cplusplus umbrella "IRReader" module * { export * } } -module LLVM_LineEditor { requires cplusplus umbrella "LineEditor" module * { export * } } -module LLVM_LTO { requires cplusplus umbrella "LTO" module * { export * } } +module LLVM_IRReader { + requires cplusplus + umbrella "IRReader" + module * { export * } +} + +module LLVM_LineEditor { + requires cplusplus + umbrella "LineEditor" + module * { export * } +} + +module LLVM_LTO { + requires cplusplus + umbrella "LTO" + module * { export * } +} module LLVM_MC { requires cplusplus @@ -275,7 +297,11 @@ module LLVM_Object { module * { export * } } -module LLVM_Option { requires cplusplus umbrella "Option" module * { export * } } +module LLVM_Option { + requires cplusplus + umbrella "Option" + module * { export * } +} module LLVM_ProfileData { requires cplusplus @@ -293,7 +319,11 @@ module LLVM_Support_TargetRegistry { export * } -module LLVM_TableGen { requires cplusplus umbrella "TableGen" module * { export * } } +module LLVM_TableGen { + requires cplusplus + umbrella "TableGen" + module * { export * } +} module LLVM_Transforms { requires cplusplus |