diff options
author | Owen Anderson <resistor@mac.com> | 2010-07-20 06:52:42 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-07-20 06:52:42 +0000 |
commit | 8dc129325fe840748a1e8592792144f1cc20ff16 (patch) | |
tree | dd4fa94ba9a88779d0c25889ad5cf618f4352a8c /llvm/tools/bugpoint/BugDriver.cpp | |
parent | 4adaccf0bf12cb8f8e2fcbfd70631599d8661b21 (diff) | |
download | bcm5719-llvm-8dc129325fe840748a1e8592792144f1cc20ff16.tar.gz bcm5719-llvm-8dc129325fe840748a1e8592792144f1cc20ff16.zip |
Reapply r108794, a fix for the failing test from last time.
llvm-svn: 108813
Diffstat (limited to 'llvm/tools/bugpoint/BugDriver.cpp')
-rw-r--r-- | llvm/tools/bugpoint/BugDriver.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/tools/bugpoint/BugDriver.cpp b/llvm/tools/bugpoint/BugDriver.cpp index 45a0d4dd17a..49b66401090 100644 --- a/llvm/tools/bugpoint/BugDriver.cpp +++ b/llvm/tools/bugpoint/BugDriver.cpp @@ -56,7 +56,8 @@ void BugDriver::setNewProgram(Module *M) { /// getPassesString - Turn a list of passes into a string which indicates the /// command line options that must be passed to add the passes. /// -std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) { +std::string +llvm::getPassesString(const std::vector<const StaticPassInfo*> &Passes) { std::string Result; for (unsigned i = 0, e = Passes.size(); i != e; ++i) { if (i) Result += " "; |