diff options
author | Dan Gohman <gohman@apple.com> | 2008-05-23 20:40:06 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-05-23 20:40:06 +0000 |
commit | ee335e35acf20d1ed5b781546d647c19b608890e (patch) | |
tree | 70b8a3c471fde4f039769872507cfc6a8e7a697d | |
parent | 9c531cdf028ef84cbe0186a205abb6a1aa4a6aca (diff) |
Add #includes to make some dependencies explicit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51496 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/PassManagers.h | 3 | ||||
-rw-r--r-- | lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 1 | ||||
-rw-r--r-- | lib/ExecutionEngine/JIT/Intercept.cpp | 1 | ||||
-rw-r--r-- | lib/ExecutionEngine/JIT/TargetSelect.cpp | 1 | ||||
-rw-r--r-- | lib/VMCore/Pass.cpp | 1 | ||||
-rw-r--r-- | tools/llvm-link/llvm-link.cpp | 1 |
6 files changed, 8 insertions, 0 deletions
diff --git a/include/llvm/PassManagers.h b/include/llvm/PassManagers.h index 0c6ff19f9f..495b32c7e9 100644 --- a/include/llvm/PassManagers.h +++ b/include/llvm/PassManagers.h @@ -86,6 +86,9 @@ #ifndef PASSMANAGERS_H #define PASSMANAGERS_H +#include "llvm/Pass.h" +#include <deque> + namespace llvm { /// FunctionPassManager and PassManager, two top level managers, serve diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 066952db2f..31cbdb9c78 100644 --- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -29,6 +29,7 @@ #include "llvm/Support/Debug.h" #include "llvm/Support/MathExtras.h" #include <algorithm> +#include <set> using namespace llvm; STATISTIC(NodesCombined , "Number of dag nodes combined"); diff --git a/lib/ExecutionEngine/JIT/Intercept.cpp b/lib/ExecutionEngine/JIT/Intercept.cpp index 0e4c75dd4f..d80fde5386 100644 --- a/lib/ExecutionEngine/JIT/Intercept.cpp +++ b/lib/ExecutionEngine/JIT/Intercept.cpp @@ -16,6 +16,7 @@ //===----------------------------------------------------------------------===// #include "JIT.h" +#include "llvm/Support/Streams.h" #include "llvm/System/DynamicLibrary.h" #include "llvm/Config/config.h" using namespace llvm; diff --git a/lib/ExecutionEngine/JIT/TargetSelect.cpp b/lib/ExecutionEngine/JIT/TargetSelect.cpp index 0fb0b41999..1c204df9f2 100644 --- a/lib/ExecutionEngine/JIT/TargetSelect.cpp +++ b/lib/ExecutionEngine/JIT/TargetSelect.cpp @@ -15,6 +15,7 @@ #include "JIT.h" #include "llvm/Module.h" #include "llvm/ModuleProvider.h" +#include "llvm/Support/Streams.h" #include "llvm/Target/SubtargetFeature.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetMachineRegistry.h" diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp index e0fe6222b5..d874d8b997 100644 --- a/lib/VMCore/Pass.cpp +++ b/lib/VMCore/Pass.cpp @@ -13,6 +13,7 @@ // //===----------------------------------------------------------------------===// +#include "llvm/Pass.h" #include "llvm/PassManager.h" #include "llvm/Module.h" #include "llvm/ModuleProvider.h" diff --git a/tools/llvm-link/llvm-link.cpp b/tools/llvm-link/llvm-link.cpp index 6c595701c6..8c6541ff0f 100644 --- a/tools/llvm-link/llvm-link.cpp +++ b/tools/llvm-link/llvm-link.cpp @@ -19,6 +19,7 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/MemoryBuffer.h" +#include "llvm/Support/Streams.h" #include "llvm/System/Signals.h" #include "llvm/System/Path.h" #include <fstream> |