[llvm-commits] CVS: llvm/tools/bugpoint/bugpoint.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri May 2 22:19:01 PDT 2003
Changes in directory llvm/tools/bugpoint:
bugpoint.cpp updated: 1.1 -> 1.2
---
Log message:
Bugpoint is always verbose, eliminate option
---
Diffs of the changes:
Index: llvm/tools/bugpoint/bugpoint.cpp
diff -u llvm/tools/bugpoint/bugpoint.cpp:1.1 llvm/tools/bugpoint/bugpoint.cpp:1.2
--- llvm/tools/bugpoint/bugpoint.cpp:1.1 Wed Nov 20 16:28:10 2002
+++ llvm/tools/bugpoint/bugpoint.cpp Fri May 2 22:18:41 2003
@@ -1,5 +1,4 @@
-//===----------------------------------------------------------------------===//
-// LLVM BugPoint Utility
+//===- bugpoint.cpp - The LLVM BugPoint utility ---------------------------===//
//
// This program is an automated compiler debugger tool. It is used to narrow
// down miscompilations and crash problems to a specific pass in the compiler,
@@ -23,9 +22,6 @@
//cl::list<std::string>
//InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
-
-//cl::opt<bool>
-//Verbose("v", cl::desc("Enable verbose output"));
int main(int argc, char **argv) {
cl::ParseCommandLineOptions(argc, argv);
More information about the llvm-commits
mailing list