diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2006-11-05 19:31:28 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2006-11-05 19:31:28 +0000 |
commit | 7d6f3db3e2ccba8625d9c8f2a22592ea16ed3fc6 (patch) | |
tree | 12d84c9eda1810eafd23f43e3d1d2e2ec60164ac /llvm/tools/bugpoint/ExecutionDriver.cpp | |
parent | 35b927e0d3bd3113dfff152425a70363bd213145 (diff) | |
download | bcm5719-llvm-7d6f3db3e2ccba8625d9c8f2a22592ea16ed3fc6.tar.gz bcm5719-llvm-7d6f3db3e2ccba8625d9c8f2a22592ea16ed3fc6.zip |
Unbreak VC++ build.
llvm-svn: 31464
Diffstat (limited to 'llvm/tools/bugpoint/ExecutionDriver.cpp')
-rw-r--r-- | llvm/tools/bugpoint/ExecutionDriver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/bugpoint/ExecutionDriver.cpp b/llvm/tools/bugpoint/ExecutionDriver.cpp index f71d7bace61..dedf91eb035 100644 --- a/llvm/tools/bugpoint/ExecutionDriver.cpp +++ b/llvm/tools/bugpoint/ExecutionDriver.cpp @@ -320,7 +320,7 @@ std::string BugDriver::compileSharedObject(const std::string &BytecodeFile) { bool BugDriver::createReferenceFile(Module *M, const std::string &Filename) { try { compileProgram(Program); - } catch (ToolExecutionError &TEE) { + } catch (ToolExecutionError &) { return false; } try { |