Add usage blurb
authorChris Lattner <sabre@nondot.org>
Sat, 18 Oct 2003 21:55:35 +0000 (21:55 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 18 Oct 2003 21:55:35 +0000 (21:55 +0000)
llvm-svn: 9246

llvm/tools/bugpoint/bugpoint.cpp

index 25fe1a2..646d43a 100644 (file)
@@ -23,7 +23,10 @@ static cl::list<const PassInfo*, bool, PassNameParser>
 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;