summaryrefslogtreecommitdiff
path: root/tools/bugpoint/BugDriver.h
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2010-04-14 04:40:31 +0000
committerNick Lewycky <nicholas@mxc.ca>2010-04-14 04:40:31 +0000
commitac15da67055a33ce418be23ce7681358b3093aeb (patch)
treedcceaf770112e7ddd79ecaa2185d585e2777d424 /tools/bugpoint/BugDriver.h
parentd305035155ef3d138e102434bf5a733ea2e32405 (diff)
downloadllvm-ac15da67055a33ce418be23ce7681358b3093aeb.tar.gz
llvm-ac15da67055a33ce418be23ce7681358b3093aeb.tar.bz2
llvm-ac15da67055a33ce418be23ce7681358b3093aeb.tar.xz
Bugpoint no longer uses exceptions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101228 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/BugDriver.h')
-rw-r--r--tools/bugpoint/BugDriver.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/bugpoint/BugDriver.h b/tools/bugpoint/BugDriver.h
index c3c847f2a6..e259dd95ce 100644
--- a/tools/bugpoint/BugDriver.h
+++ b/tools/bugpoint/BugDriver.h
@@ -17,9 +17,12 @@
#define BUGDRIVER_H
#include "llvm/ADT/DenseMap.h"
+#include "llvm/Support/CommandLine.h"
#include <vector>
#include <string>
+extern llvm::cl::opt<bool> StripDebug;
+
namespace llvm {
class Value;
@@ -172,9 +175,7 @@ public:
void compileProgram(Module *M, std::string *Error);
/// executeProgram - This method runs "Program", capturing the output of the
- /// program to a file. The recommended filename will be filled in with the
- /// name of the file with the captured output. If there is a problem with
- /// the code generator (e.g., llc crashes), this will throw an exception.
+ /// program to a file. A recommended filename may be optionally specified.
///
std::string executeProgram(std::string OutputFilename,
std::string Bitcode,