diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-08-02 21:50:24 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-08-02 21:50:24 +0000 |
commit | 591eaa481e27d1a8b4fe0af753c373d15227c27a (patch) | |
tree | bff669ef2607183365e5c533eb7ad051eeb5142c /llvm/tools/opt/opt.cpp | |
parent | f51dae0378eeeb328ef2d39e41df73054937949c (diff) | |
download | bcm5719-llvm-591eaa481e27d1a8b4fe0af753c373d15227c27a.tar.gz bcm5719-llvm-591eaa481e27d1a8b4fe0af753c373d15227c27a.zip |
move PassManagerBuilder.h to IPO. This is a non intuitive place to put it,
but it solves a layering violation since things in Support are not supposed to
use things in Transforms.
llvm-svn: 136726
Diffstat (limited to 'llvm/tools/opt/opt.cpp')
-rw-r--r-- | llvm/tools/opt/opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/opt/opt.cpp b/llvm/tools/opt/opt.cpp index aa375c58899..fed98ce78dc 100644 --- a/llvm/tools/opt/opt.cpp +++ b/llvm/tools/opt/opt.cpp @@ -35,11 +35,11 @@ #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/PluginLoader.h" #include "llvm/Support/PrettyStackTrace.h" -#include "llvm/Support/PassManagerBuilder.h" #include "llvm/Support/SystemUtils.h" #include "llvm/Support/ToolOutputFile.h" #include "llvm/LinkAllPasses.h" #include "llvm/LinkAllVMCore.h" +#include "llvm/Transforms/IPO/PassManagerBuilder.h" #include <memory> #include <algorithm> using namespace llvm; |