From 670406d269283c8a7045a5b55c78049222cd3a07 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 18 Oct 2003 21:55:35 +0000 Subject: Add usage blurb git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9246 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/bugpoint/bugpoint.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp index 25fe1a2..646d43a 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; -- cgit v1.1