From 142b4a721faaaf474bc8c144401eb92dc25601dd Mon Sep 17 00:00:00 2001 From: Jeff Cohen Date: Sat, 22 Jan 2005 16:30:58 +0000 Subject: [PATCH] Fix VC++ complaint llvm-svn: 19747 --- llvm/include/llvm/Support/ToolRunner.h | 3 ++- llvm/tools/bugpoint/CrashDebugger.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/Support/ToolRunner.h b/llvm/include/llvm/Support/ToolRunner.h index b5313e942ca7..e44cd6574140 100644 --- a/llvm/include/llvm/Support/ToolRunner.h +++ b/llvm/include/llvm/Support/ToolRunner.h @@ -79,7 +79,8 @@ public: /// LLVM bytecode in a variety of ways. This abstract interface hides this /// complexity behind a simple interface. /// -struct AbstractInterpreter { +class AbstractInterpreter { +public: static CBE *createCBE(const std::string &ProgramPath, std::string &Message, const std::vector *Args = 0); static LLC *createLLC(const std::string &ProgramPath, std::string &Message, diff --git a/llvm/tools/bugpoint/CrashDebugger.cpp b/llvm/tools/bugpoint/CrashDebugger.cpp index 7dd6db4ab584..a8e5e98f2523 100644 --- a/llvm/tools/bugpoint/CrashDebugger.cpp +++ b/llvm/tools/bugpoint/CrashDebugger.cpp @@ -431,7 +431,7 @@ static bool TestForCodeGenCrash(BugDriver &BD, Module *M) { BD.compileProgram(M); std::cerr << '\n'; return false; - } catch (ToolExecutionError &TEE) { + } catch (ToolExecutionError &) { std::cerr << "\n"; return true; // Tool is still crashing. } -- GitLab