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/llvm-ld | |
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/llvm-ld')
-rw-r--r-- | llvm/tools/llvm-ld/Optimize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-ld/Optimize.cpp b/llvm/tools/llvm-ld/Optimize.cpp index ca6a4777aa6..a05ab0abcf7 100644 --- a/llvm/tools/llvm-ld/Optimize.cpp +++ b/llvm/tools/llvm-ld/Optimize.cpp @@ -13,13 +13,13 @@ #include "llvm/Module.h" #include "llvm/Support/CommandLine.h" -#include "llvm/Support/PassManagerBuilder.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Support/DynamicLibrary.h" #include "llvm/Target/TargetData.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Support/PassNameParser.h" #include "llvm/Support/PluginLoader.h" +#include "llvm/Transforms/IPO/PassManagerBuilder.h" using namespace llvm; // Pass Name Options as generated by the PassNameParser |