diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-08-21 05:34:03 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-08-21 05:34:03 +0000 |
commit | 62c5105adc4f51c6dd07be3471ea2462c8e00c82 (patch) | |
tree | 31ed385a3ceaa771a76ef988aef20a9ff581daff /tools | |
parent | da6169b9961e09dd8ff20b403a825dd0229dfd85 (diff) | |
download | external_llvm-62c5105adc4f51c6dd07be3471ea2462c8e00c82.zip external_llvm-62c5105adc4f51c6dd07be3471ea2462c8e00c82.tar.gz external_llvm-62c5105adc4f51c6dd07be3471ea2462c8e00c82.tar.bz2 |
For PR885:
Consolidate the LinkAllAnalyses.h and LinkAllPasses.h headers into one
so there is no dupliation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29787 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bugpoint/bugpoint.cpp | 3 | ||||
-rw-r--r-- | tools/opt/opt.cpp | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp index 353e117..97ff5f7 100644 --- a/tools/bugpoint/bugpoint.cpp +++ b/tools/bugpoint/bugpoint.cpp @@ -15,8 +15,7 @@ #include "BugDriver.h" #include "ToolRunner.h" -#include "llvm/Analysis/LinkAllAnalyses.h" -#include "llvm/Transforms/LinkAllPasses.h" +#include "llvm/LinkAllPasses.h" #include "llvm/Support/PassNameParser.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/PluginLoader.h" diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 3800994..6d3b3b6 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -26,7 +26,7 @@ #include "llvm/Support/PluginLoader.h" #include "llvm/Support/SystemUtils.h" #include "llvm/Support/Timer.h" -#include "llvm/Transforms/LinkAllPasses.h" +#include "llvm/LinkAllPasses.h" #include "llvm/LinkAllVMCore.h" #include <fstream> #include <memory> |