diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-11 20:00:56 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-11 20:00:56 +0000 |
commit | f3e397eb17327423b3f8fff5eac8547c85efddb1 (patch) | |
tree | 6599027c0feadbd348bf98c1be3a924d260bddee | |
parent | 715a1be51fe25a09fcc5318cd787893a8fbfc9e1 (diff) | |
download | external_llvm-f3e397eb17327423b3f8fff5eac8547c85efddb1.zip external_llvm-f3e397eb17327423b3f8fff5eac8547c85efddb1.tar.gz external_llvm-f3e397eb17327423b3f8fff5eac8547c85efddb1.tar.bz2 |
Include PathV1.h in files that use it.
This is preparation for replacing Path.h with PathV2.h.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183782 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Bitcode/Archive.h | 1 | ||||
-rw-r--r-- | include/llvm/Support/FileUtilities.h | 1 | ||||
-rw-r--r-- | include/llvm/Support/GraphWriter.h | 1 | ||||
-rw-r--r-- | include/llvm/Support/Path.h | 1 | ||||
-rw-r--r-- | include/llvm/Support/Program.h | 1 | ||||
-rw-r--r-- | include/llvm/Support/Signals.h | 1 | ||||
-rw-r--r-- | lib/Support/CommandLine.cpp | 1 | ||||
-rw-r--r-- | lib/Support/Path.cpp | 1 | ||||
-rw-r--r-- | tools/bugpoint/ToolRunner.h | 1 | ||||
-rw-r--r-- | tools/llvm-config/llvm-config.cpp | 1 | ||||
-rw-r--r-- | tools/lto/LTOModule.cpp | 1 |
11 files changed, 10 insertions, 1 deletions
diff --git a/include/llvm/Bitcode/Archive.h b/include/llvm/Bitcode/Archive.h index 7b30c7e..d27f690 100644 --- a/include/llvm/Bitcode/Archive.h +++ b/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 <map> #include <set> diff --git a/include/llvm/Support/FileUtilities.h b/include/llvm/Support/FileUtilities.h index 5456eb7..c6feb9f 100644 --- a/include/llvm/Support/FileUtilities.h +++ b/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/include/llvm/Support/GraphWriter.h b/include/llvm/Support/GraphWriter.h index 22181d4..e867fae 100644 --- a/include/llvm/Support/GraphWriter.h +++ b/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 <cassert> #include <vector> diff --git a/include/llvm/Support/Path.h b/include/llvm/Support/Path.h index 196eecc..5b7ff7e 100644 --- a/include/llvm/Support/Path.h +++ b/include/llvm/Support/Path.h @@ -12,5 +12,4 @@ // //===----------------------------------------------------------------------===// -#include "llvm/Support/PathV1.h" #include "llvm/Support/PathV2.h" diff --git a/include/llvm/Support/Program.h b/include/llvm/Support/Program.h index fb177de..08a64de 100644 --- a/include/llvm/Support/Program.h +++ b/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/include/llvm/Support/Signals.h b/include/llvm/Support/Signals.h index 465656b..c0a489a 100644 --- a/include/llvm/Support/Signals.h +++ b/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 <cstdio> namespace llvm { diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp index f09705e..63d0b73 100644 --- a/lib/Support/CommandLine.cpp +++ b/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 <cerrno> diff --git a/lib/Support/Path.cpp b/lib/Support/Path.cpp index b873b9a..1bae781 100644 --- a/lib/Support/Path.cpp +++ b/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 <cassert> #include <cstring> #include <ostream> diff --git a/tools/bugpoint/ToolRunner.h b/tools/bugpoint/ToolRunner.h index bb83ce4..28c09f5 100644 --- a/tools/bugpoint/ToolRunner.h +++ b/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 <exception> #include <vector> diff --git a/tools/llvm-config/llvm-config.cpp b/tools/llvm-config/llvm-config.cpp index 7edf5ec..5151d1a 100644 --- a/tools/llvm-config/llvm-config.cpp +++ b/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 <cstdlib> #include <set> diff --git a/tools/lto/LTOModule.cpp b/tools/lto/LTOModule.cpp index 91fcb2e..807d860 100644 --- a/tools/lto/LTOModule.cpp +++ b/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" |