[llvm-commits] CVS: llvm/tools/bugpoint/CrashDebugger.cpp

Jeff Cohen jeffc at jolt-lang.org
Sat Jan 22 08:31:08 PST 2005



Changes in directory llvm/tools/bugpoint:

CrashDebugger.cpp updated: 1.39 -> 1.40
---
Log message:

Fix VC++ complaint

---
Diffs of the changes:  (+1 -1)

 CrashDebugger.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/tools/bugpoint/CrashDebugger.cpp
diff -u llvm/tools/bugpoint/CrashDebugger.cpp:1.39 llvm/tools/bugpoint/CrashDebugger.cpp:1.40
--- llvm/tools/bugpoint/CrashDebugger.cpp:1.39	Thu Dec 16 17:04:20 2004
+++ llvm/tools/bugpoint/CrashDebugger.cpp	Sat Jan 22 10:30:58 2005
@@ -431,7 +431,7 @@
     BD.compileProgram(M);
     std::cerr << '\n';
     return false;
-  } catch (ToolExecutionError &TEE) {
+  } catch (ToolExecutionError &) {
     std::cerr << "<crash>\n";
     return true;  // Tool is still crashing.
   }






More information about the llvm-commits mailing list