From 8148839c105992f00be9fd23f68f2139a9112ebf Mon Sep 17 00:00:00 2001 From: Zhongxing Xu Date: Sun, 24 Aug 2008 02:33:36 +0000 Subject: [PATCH] Moved HTMLDiagnostics to lib/Driver. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55274 91177308-0d34-0410-b5e6-96231b3b80d8 --- Driver/ASTConsumers.cpp | 2 +- Driver/AnalysisConsumer.cpp | 2 +- Driver/clang.cpp | 2 +- {Driver => include/clang/Driver}/HTMLDiagnostics.h | 0 {Driver => lib/Driver}/HTMLDiagnostics.cpp | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename {Driver => include/clang/Driver}/HTMLDiagnostics.h (100%) rename {Driver => lib/Driver}/HTMLDiagnostics.cpp (99%) 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 similarity index 100% rename from Driver/HTMLDiagnostics.h rename to include/clang/Driver/HTMLDiagnostics.h diff --git a/Driver/HTMLDiagnostics.cpp b/lib/Driver/HTMLDiagnostics.cpp similarity index 99% rename from Driver/HTMLDiagnostics.cpp rename to 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" -- 2.50.1