diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-02-18 00:21:45 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-02-18 00:21:45 +0000 |
commit | c7281aaaaedc970b8f72272d66965fa6388e5c86 (patch) | |
tree | e598b69bd51226376f189c2728824639e9ccf1df | |
parent | 2d7ec9a860312deb01d6fdd5a6cfeabe5e740178 (diff) | |
download | bcm5719-llvm-c7281aaaaedc970b8f72272d66965fa6388e5c86.tar.gz bcm5719-llvm-c7281aaaaedc970b8f72272d66965fa6388e5c86.zip |
[modules] Fix typo in DIA exclusion in module map.
llvm-svn: 229591
-rw-r--r-- | llvm/include/llvm/module.modulemap | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/include/llvm/module.modulemap b/llvm/include/llvm/module.modulemap index 5a2a54cd80d..431b6d6d5fb 100644 --- a/llvm/include/llvm/module.modulemap +++ b/llvm/include/llvm/module.modulemap @@ -58,16 +58,16 @@ module LLVM_DebugInfo_PDB { // a separate library which might not be available. // // FIXME: There should be a better way to specify this. - exclude header "DebugInfo/PDB/DIADataStream.h" - exclude header "DebugInfo/PDB/DIAEnumDebugStreams.h" - exclude header "DebugInfo/PDB/DIAEnumLineNumbers.h" - exclude header "DebugInfo/PDB/DIAEnumSourceFiles.h" - exclude header "DebugInfo/PDB/DIAEnumSymbols.h" - exclude header "DebugInfo/PDB/DIALineNumber.h" - exclude header "DebugInfo/PDB/DIARawSymbol.h" - exclude header "DebugInfo/PDB/DIASession.h" - exclude header "DebugInfo/PDB/DIASourceFile.h" - exclude header "DebugInfo/PDB/DIASupport.h" + exclude header "DebugInfo/PDB/DIA/DIADataStream.h" + exclude header "DebugInfo/PDB/DIA/DIAEnumDebugStreams.h" + exclude header "DebugInfo/PDB/DIA/DIAEnumLineNumbers.h" + exclude header "DebugInfo/PDB/DIA/DIAEnumSourceFiles.h" + exclude header "DebugInfo/PDB/DIA/DIAEnumSymbols.h" + exclude header "DebugInfo/PDB/DIA/DIALineNumber.h" + exclude header "DebugInfo/PDB/DIA/DIARawSymbol.h" + exclude header "DebugInfo/PDB/DIA/DIASession.h" + exclude header "DebugInfo/PDB/DIA/DIASourceFile.h" + exclude header "DebugInfo/PDB/DIA/DIASupport.h" } module LLVM_DebugInfo_PDB_DIA { |