diff options
author | Dan Gohman <gohman@apple.com> | 2010-08-07 00:43:20 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-08-07 00:43:20 +0000 |
commit | 11112e0d7b1fb2741ed65a5085037918d1425916 (patch) | |
tree | 3f868bdd48d5a4249983092162fa69d8b2ef5c71 /lib/VMCore/Pass.cpp | |
parent | 634bab148cacc8cc8647172056c26c8bc3f60a65 (diff) | |
download | external_llvm-11112e0d7b1fb2741ed65a5085037918d1425916.zip external_llvm-11112e0d7b1fb2741ed65a5085037918d1425916.tar.gz external_llvm-11112e0d7b1fb2741ed65a5085037918d1425916.tar.bz2 |
Tidy some #includes and forward-declarations, and move the C binding code
out of PassManager.cpp and into Core.cpp with the rest of the C binding code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110494 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Pass.cpp')
-rw-r--r-- | lib/VMCore/Pass.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp index fb23fbf..41a87d6 100644 --- a/lib/VMCore/Pass.cpp +++ b/lib/VMCore/Pass.cpp @@ -17,19 +17,14 @@ #include "llvm/PassManager.h" #include "llvm/PassRegistry.h" #include "llvm/Module.h" -#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/StringMap.h" #include "llvm/Assembly/PrintModulePass.h" #include "llvm/Support/Debug.h" -#include "llvm/Support/ManagedStatic.h" #include "llvm/Support/PassNameParser.h" #include "llvm/Support/raw_ostream.h" #include "llvm/System/Atomic.h" #include "llvm/System/Mutex.h" #include "llvm/System/Threading.h" -#include <algorithm> -#include <map> -#include <set> using namespace llvm; //===----------------------------------------------------------------------===// |