diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 12:32:42 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 12:32:42 +0000 |
commit | 1b69ed8f6a34a5b9fa36f5503f4ce44b02ca765e (patch) | |
tree | eccc08e866701800d147800888d9e9006f08cb6d /llvm/tools/llvm-stress/llvm-stress.cpp | |
parent | 8cd041ef195abc0d500c26fb08db123eacb60c1a (diff) | |
download | bcm5719-llvm-1b69ed8f6a34a5b9fa36f5503f4ce44b02ca765e.tar.gz bcm5719-llvm-1b69ed8f6a34a5b9fa36f5503f4ce44b02ca765e.zip |
[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.
llvm-svn: 202839
Diffstat (limited to 'llvm/tools/llvm-stress/llvm-stress.cpp')
-rw-r--r-- | llvm/tools/llvm-stress/llvm-stress.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-stress/llvm-stress.cpp b/llvm/tools/llvm-stress/llvm-stress.cpp index beb0a6042d2..d31b86f56bd 100644 --- a/llvm/tools/llvm-stress/llvm-stress.cpp +++ b/llvm/tools/llvm-stress/llvm-stress.cpp @@ -17,12 +17,12 @@ #include "llvm/IR/IRPrintingPasses.h" #include "llvm/IR/Instruction.h" #include "llvm/IR/LLVMContext.h" +#include "llvm/IR/LegacyPassNameParser.h" #include "llvm/IR/Module.h" #include "llvm/IR/Verifier.h" #include "llvm/PassManager.h" #include "llvm/Support/Debug.h" #include "llvm/Support/ManagedStatic.h" -#include "llvm/Support/PassNameParser.h" #include "llvm/Support/PluginLoader.h" #include "llvm/Support/PrettyStackTrace.h" #include "llvm/Support/ToolOutputFile.h" |