summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-04 12:32:42 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-04 12:32:42 +0000
commitf7591dd31f9a03df907554053067c7c5b7c4b3dc (patch)
tree5558f8f62ba24d634cbd652929791ef4d8d6ccb5 /lib
parent19d764fb05662ff6b423cf6dc97d300276e4b586 (diff)
downloadllvm-f7591dd31f9a03df907554053067c7c5b7c4b3dc.tar.gz
llvm-f7591dd31f9a03df907554053067c7c5b7c4b3dc.tar.bz2
llvm-f7591dd31f9a03df907554053067c7c5b7c4b3dc.tar.xz
[Modules] Move the PassNameParser to the IR library as it deals in the
PassInfo structures of the legacy pass manager. Also give it the Legacy prefix as it is not a particularly widely used header. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202839 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/IR/LegacyPassManager.cpp2
-rw-r--r--lib/IR/Pass.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/IR/LegacyPassManager.cpp b/lib/IR/LegacyPassManager.cpp
index a0ed6cab38..e384e08457 100644
--- a/lib/IR/LegacyPassManager.cpp
+++ b/lib/IR/LegacyPassManager.cpp
@@ -15,13 +15,13 @@
#include "llvm/IR/IRPrintingPasses.h"
#include "llvm/IR/LegacyPassManager.h"
#include "llvm/IR/LegacyPassManagers.h"
+#include "llvm/IR/LegacyPassNameParser.h"
#include "llvm/IR/Module.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/ManagedStatic.h"
#include "llvm/Support/Mutex.h"
-#include "llvm/Support/PassNameParser.h"
#include "llvm/Support/Timer.h"
#include "llvm/Support/raw_ostream.h"
#include <algorithm>
diff --git a/lib/IR/Pass.cpp b/lib/IR/Pass.cpp
index f81a1c77a8..06a5e9e378 100644
--- a/lib/IR/Pass.cpp
+++ b/lib/IR/Pass.cpp
@@ -16,9 +16,9 @@
#include "llvm/Pass.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/IRPrintingPasses.h"
+#include "llvm/IR/LegacyPassNameParser.h"
#include "llvm/PassRegistry.h"
#include "llvm/Support/Debug.h"
-#include "llvm/Support/PassNameParser.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;