From: Chris Lattner Date: Sat, 18 Oct 2003 21:55:35 +0000 (+0000) Subject: Add usage blurb X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=670406d269283c8a7045a5b55c78049222cd3a07;p=oota-llvm.git Add usage blurb git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9246 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp index 25fe1a25245..646d43afef1 100644 --- a/tools/bugpoint/bugpoint.cpp +++ b/tools/bugpoint/bugpoint.cpp @@ -23,7 +23,10 @@ static cl::list 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;