summaryrefslogtreecommitdiff
path: root/tools/bugpoint/BugDriver.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-08-10 15:46:11 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-08-10 15:46:11 +0000
commit866aa0d742b7bc9811fd1b45507af999c605205a (patch)
treece989cf4f563f84b47f7ff036fb29b96ec318ac9 /tools/bugpoint/BugDriver.h
parent6455384fc1c2328a656035810b895447bdddea0e (diff)
downloadllvm-866aa0d742b7bc9811fd1b45507af999c605205a.tar.gz
llvm-866aa0d742b7bc9811fd1b45507af999c605205a.tar.bz2
llvm-866aa0d742b7bc9811fd1b45507af999c605205a.tar.xz
Use RunPassesOn as in the rest of bugpoint.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110682 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/BugDriver.h')
-rw-r--r--tools/bugpoint/BugDriver.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/bugpoint/BugDriver.h b/tools/bugpoint/BugDriver.h
index dbb7a3dd8f..e48806aee6 100644
--- a/tools/bugpoint/BugDriver.h
+++ b/tools/bugpoint/BugDriver.h
@@ -214,8 +214,7 @@ public:
/// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code
/// which depends on the value. The modified module is then returned.
///
- Module *deleteInstructionFromProgram(const Instruction *I, unsigned Simp)
- const;
+ Module *deleteInstructionFromProgram(const Instruction *I, unsigned Simp);
/// performFinalCleanups - This method clones the current Program and performs
/// a series of cleanups intended to get rid of extra cruft on the module. If