diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-08-24 02:33:36 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-08-24 02:33:36 +0000 |
commit | 8148839c105992f00be9fd23f68f2139a9112ebf (patch) | |
tree | d1cb9ec4f958bc78fa11b335e8dcd19a210b08fa | |
parent | 155f49d0ade0a008f619b61a4f531711396dd9a7 (diff) |
Moved HTMLDiagnostics to lib/Driver.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55274 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Driver/ASTConsumers.cpp | 2 | ||||
-rw-r--r-- | Driver/AnalysisConsumer.cpp | 2 | ||||
-rw-r--r-- | Driver/clang.cpp | 2 | ||||
-rw-r--r-- | include/clang/Driver/HTMLDiagnostics.h (renamed from Driver/HTMLDiagnostics.h) | 0 | ||||
-rw-r--r-- | lib/Driver/HTMLDiagnostics.cpp (renamed from Driver/HTMLDiagnostics.cpp) | 2 |
5 files changed, 4 insertions, 4 deletions
diff --git a/Driver/ASTConsumers.cpp b/Driver/ASTConsumers.cpp index 3206bfd488..97c0b7f60e 100644 --- a/Driver/ASTConsumers.cpp +++ b/Driver/ASTConsumers.cpp @@ -12,7 +12,7 @@ //===----------------------------------------------------------------------===// #include "ASTConsumers.h" -#include "HTMLDiagnostics.h" +#include "clang/Driver/HTMLDiagnostics.h" #include "clang/AST/TranslationUnit.h" #include "clang/Basic/Diagnostic.h" #include "clang/Basic/SourceManager.h" diff --git a/Driver/AnalysisConsumer.cpp b/Driver/AnalysisConsumer.cpp index 0700c00f49..9b84aa37a3 100644 --- a/Driver/AnalysisConsumer.cpp +++ b/Driver/AnalysisConsumer.cpp @@ -12,7 +12,7 @@ //===----------------------------------------------------------------------===// #include "ASTConsumers.h" -#include "HTMLDiagnostics.h" +#include "clang/Driver/HTMLDiagnostics.h" #include "clang/AST/ASTConsumer.h" #include "clang/AST/Decl.h" #include "clang/AST/DeclObjC.h" diff --git a/Driver/clang.cpp b/Driver/clang.cpp index 419fa980c6..fad1624ef2 100644 --- a/Driver/clang.cpp +++ b/Driver/clang.cpp @@ -24,7 +24,7 @@ #include "clang.h" #include "ASTConsumers.h" -#include "HTMLDiagnostics.h" +#include "clang/Driver/HTMLDiagnostics.h" #include "clang/Driver/InitHeaderSearch.h" #include "clang/Driver/TextDiagnosticBuffer.h" #include "clang/Driver/TextDiagnosticPrinter.h" diff --git a/Driver/HTMLDiagnostics.h b/include/clang/Driver/HTMLDiagnostics.h index be72c49fd2..be72c49fd2 100644 --- a/Driver/HTMLDiagnostics.h +++ b/include/clang/Driver/HTMLDiagnostics.h diff --git a/Driver/HTMLDiagnostics.cpp b/lib/Driver/HTMLDiagnostics.cpp index 0675ec277d..e691882098 100644 --- a/Driver/HTMLDiagnostics.cpp +++ b/lib/Driver/HTMLDiagnostics.cpp @@ -11,7 +11,7 @@ // //===----------------------------------------------------------------------===// -#include "HTMLDiagnostics.h" +#include "clang/Driver/HTMLDiagnostics.h" #include "clang/Analysis/PathDiagnostic.h" #include "clang/AST/ASTContext.h" #include "clang/AST/Decl.h" |