diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-22 06:29:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-22 06:29:25 +0000 |
commit | 6eeb7345f215217aca4a60098eb1f968c76f700c (patch) | |
tree | 98070322e48af3cb781f4c565c38498ba36d9358 /lib | |
parent | 36fe19837c0c44207d1cbd6040764928409f66d6 (diff) | |
download | external_llvm-6eeb7345f215217aca4a60098eb1f968c76f700c.zip external_llvm-6eeb7345f215217aca4a60098eb1f968c76f700c.tar.gz external_llvm-6eeb7345f215217aca4a60098eb1f968c76f700c.tar.bz2 |
give PassNameParser a home.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94162 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/VMCore/Pass.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp index 39da8fb..45000f2 100644 --- a/lib/VMCore/Pass.cpp +++ b/lib/VMCore/Pass.cpp @@ -21,6 +21,7 @@ #include "llvm/ADT/StringMap.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" @@ -394,6 +395,8 @@ void PassRegistrationListener::enumeratePasses() { getPassRegistrar()->EnumerateWith(this); } +PassNameParser::~PassNameParser() {} + //===----------------------------------------------------------------------===// // AnalysisUsage Class Implementation // |