[llvm-commits] CVS: llvm/tools/bugpoint/bugpoint.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sat Oct 18 16:57:00 PDT 2003
Changes in directory llvm/tools/bugpoint:
bugpoint.cpp updated: 1.7 -> 1.8
---
Log message:
Add usage blurb
---
Diffs of the changes: (+4 -1)
Index: llvm/tools/bugpoint/bugpoint.cpp
diff -u llvm/tools/bugpoint/bugpoint.cpp:1.7 llvm/tools/bugpoint/bugpoint.cpp:1.8
--- llvm/tools/bugpoint/bugpoint.cpp:1.7 Fri Sep 12 15:42:57 2003
+++ llvm/tools/bugpoint/bugpoint.cpp Sat Oct 18 16:55:35 2003
@@ -23,7 +23,10 @@
PassList(cl::desc("Passes available:"), cl::ZeroOrMore);
int main(int argc, char **argv) {
- cl::ParseCommandLineOptions(argc, argv);
+ cl::ParseCommandLineOptions(argc, argv,
+ " LLVM automatic testcase reducer. See\nhttp://"
+ "llvm.cs.uiuc.edu/docs/CommandGuide/bugpoint.html"
+ " for more information.\n");
BugDriver D(argv[0]);
if (D.addSources(InputFilenames)) return 1;
More information about the llvm-commits
mailing list