From: Rafael Espindola Date: Tue, 11 Jun 2013 20:00:56 +0000 (+0000) Subject: Include PathV1.h in files that use it. X-Git-Tag: llvmorg-3.4.0-rc1~10868 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d1fcac91268d5a539ba1a47cbe8e71d846f0aa22;p=platform%2Fupstream%2Fllvm.git Include PathV1.h in files that use it. This is preparation for replacing Path.h with PathV2.h. llvm-svn: 183782 --- diff --git a/llvm/include/llvm/Bitcode/Archive.h b/llvm/include/llvm/Bitcode/Archive.h index 7b30c7e458fa..d27f690cb518 100644 --- a/llvm/include/llvm/Bitcode/Archive.h +++ b/llvm/include/llvm/Bitcode/Archive.h @@ -20,6 +20,7 @@ #include "llvm/ADT/ilist.h" #include "llvm/ADT/ilist_node.h" #include "llvm/Support/Path.h" +#include "llvm/Support/PathV1.h" #include #include diff --git a/llvm/include/llvm/Support/FileUtilities.h b/llvm/include/llvm/Support/FileUtilities.h index 5456eb730a17..c6feb9f42689 100644 --- a/llvm/include/llvm/Support/FileUtilities.h +++ b/llvm/include/llvm/Support/FileUtilities.h @@ -17,6 +17,7 @@ #include "llvm/Support/FileSystem.h" #include "llvm/Support/Path.h" +#include "llvm/Support/PathV1.h" namespace llvm { diff --git a/llvm/include/llvm/Support/GraphWriter.h b/llvm/include/llvm/Support/GraphWriter.h index 22181d4e1d46..e867fae726d6 100644 --- a/llvm/include/llvm/Support/GraphWriter.h +++ b/llvm/include/llvm/Support/GraphWriter.h @@ -26,6 +26,7 @@ #include "llvm/ADT/GraphTraits.h" #include "llvm/Support/DOTGraphTraits.h" #include "llvm/Support/Path.h" +#include "llvm/Support/PathV1.h" #include "llvm/Support/raw_ostream.h" #include #include diff --git a/llvm/include/llvm/Support/Path.h b/llvm/include/llvm/Support/Path.h index 196eecce8185..5b7ff7e4f2d4 100644 --- a/llvm/include/llvm/Support/Path.h +++ b/llvm/include/llvm/Support/Path.h @@ -12,5 +12,4 @@ // //===----------------------------------------------------------------------===// -#include "llvm/Support/PathV1.h" #include "llvm/Support/PathV2.h" diff --git a/llvm/include/llvm/Support/Program.h b/llvm/include/llvm/Support/Program.h index fb177de97b40..08a64dedfaca 100644 --- a/llvm/include/llvm/Support/Program.h +++ b/llvm/include/llvm/Support/Program.h @@ -16,6 +16,7 @@ #include "llvm/ADT/ArrayRef.h" #include "llvm/Support/Path.h" +#include "llvm/Support/PathV1.h" namespace llvm { class error_code; diff --git a/llvm/include/llvm/Support/Signals.h b/llvm/include/llvm/Support/Signals.h index 465656b94116..c0a489a4b826 100644 --- a/llvm/include/llvm/Support/Signals.h +++ b/llvm/include/llvm/Support/Signals.h @@ -16,6 +16,7 @@ #define LLVM_SUPPORT_SIGNALS_H #include "llvm/Support/Path.h" +#include "llvm/Support/PathV1.h" #include namespace llvm { diff --git a/llvm/lib/Support/CommandLine.cpp b/llvm/lib/Support/CommandLine.cpp index f09705e69a19..63d0b739c003 100644 --- a/llvm/lib/Support/CommandLine.cpp +++ b/llvm/lib/Support/CommandLine.cpp @@ -29,6 +29,7 @@ #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Path.h" +#include "llvm/Support/PathV1.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Support/system_error.h" #include diff --git a/llvm/lib/Support/Path.cpp b/llvm/lib/Support/Path.cpp index b873b9ab4a07..1bae78137b3f 100644 --- a/llvm/lib/Support/Path.cpp +++ b/llvm/lib/Support/Path.cpp @@ -15,6 +15,7 @@ #include "llvm/Config/config.h" #include "llvm/Support/Endian.h" #include "llvm/Support/FileSystem.h" +#include "llvm/Support/PathV1.h" #include #include #include diff --git a/llvm/tools/bugpoint/ToolRunner.h b/llvm/tools/bugpoint/ToolRunner.h index bb83ce459e72..28c09f5004b6 100644 --- a/llvm/tools/bugpoint/ToolRunner.h +++ b/llvm/tools/bugpoint/ToolRunner.h @@ -21,6 +21,7 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/Path.h" +#include "llvm/Support/PathV1.h" #include "llvm/Support/SystemUtils.h" #include #include diff --git a/llvm/tools/llvm-config/llvm-config.cpp b/llvm/tools/llvm-config/llvm-config.cpp index 7edf5eca0b2c..5151d1a0911a 100644 --- a/llvm/tools/llvm-config/llvm-config.cpp +++ b/llvm/tools/llvm-config/llvm-config.cpp @@ -25,6 +25,7 @@ #include "llvm/Config/llvm-config.h" #include "llvm/Support/FileSystem.h" #include "llvm/Support/Path.h" +#include "llvm/Support/PathV1.h" #include "llvm/Support/raw_ostream.h" #include #include diff --git a/llvm/tools/lto/LTOModule.cpp b/llvm/tools/lto/LTOModule.cpp index 91fcb2ee3d02..807d860b79cf 100644 --- a/llvm/tools/lto/LTOModule.cpp +++ b/llvm/tools/lto/LTOModule.cpp @@ -32,6 +32,7 @@ #include "llvm/Support/FileSystem.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Path.h" +#include "llvm/Support/PathV1.h" #include "llvm/Support/SourceMgr.h" #include "llvm/Support/TargetRegistry.h" #include "llvm/Support/TargetSelect.h"