summaryrefslogtreecommitdiff
path: root/tools/bugpoint/FindBugs.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-08-05 00:29:04 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-08-05 00:29:04 +0000
commitca356afe09454b3378165ded4eda294bd6341428 (patch)
treeb6f47b6e1a27b514a783a69302401612e6aa61d7 /tools/bugpoint/FindBugs.cpp
parent602902ab80b5667c190e18a77c71822c0507e294 (diff)
downloadllvm-ca356afe09454b3378165ded4eda294bd6341428.tar.gz
llvm-ca356afe09454b3378165ded4eda294bd6341428.tar.bz2
llvm-ca356afe09454b3378165ded4eda294bd6341428.tar.xz
Make EmitProgressBitcode const and add a Module argument to runPasses. Use
that argument to simplify runPassesOn. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110291 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/FindBugs.cpp')
-rw-r--r--tools/bugpoint/FindBugs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/FindBugs.cpp b/tools/bugpoint/FindBugs.cpp
index 4fd597ee11..d4597dc104 100644
--- a/tools/bugpoint/FindBugs.cpp
+++ b/tools/bugpoint/FindBugs.cpp
@@ -62,7 +62,7 @@ bool BugDriver::runManyPasses(const std::vector<const PassInfo*> &AllPasses,
}
std::string Filename;
- if(runPasses(PassesToRun, Filename, false)) {
+ if(runPasses(Program, PassesToRun, Filename, false)) {
outs() << "\n";
outs() << "Optimizer passes caused failure!\n\n";
debugOptimizerCrash();