[llvm] r229591 - [modules] Fix typo in DIA exclusion in module map.

Richard Smith richard-llvm at metafoo.co.uk
Tue Feb 17 16:21:46 PST 2015


Author: rsmith
Date: Tue Feb 17 18:21:45 2015
New Revision: 229591

URL: http://llvm.org/viewvc/llvm-project?rev=229591&view=rev
Log:
[modules] Fix typo in DIA exclusion in module map.

Modified:
    llvm/trunk/include/llvm/module.modulemap

Modified: llvm/trunk/include/llvm/module.modulemap
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/module.modulemap?rev=229591&r1=229590&r2=229591&view=diff
==============================================================================
--- llvm/trunk/include/llvm/module.modulemap (original)
+++ llvm/trunk/include/llvm/module.modulemap Tue Feb 17 18:21:45 2015
@@ -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 {





More information about the llvm-commits mailing list