diff options
| author | Chris Lattner <sabre@nondot.org> | 2003-10-18 21:55:35 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2003-10-18 21:55:35 +0000 |
| commit | 849619e23ecb34c96f35afb2a47d97a259650f5f (patch) | |
| tree | beee3bdf3d291e391b1e96d26d6e56812963d629 /llvm/tools/bugpoint/bugpoint.cpp | |
| parent | 0132ae4117dfc7a7a47836690e35e878953b618d (diff) | |
| download | bcm5719-llvm-849619e23ecb34c96f35afb2a47d97a259650f5f.tar.gz bcm5719-llvm-849619e23ecb34c96f35afb2a47d97a259650f5f.zip | |
Add usage blurb
llvm-svn: 9246
Diffstat (limited to 'llvm/tools/bugpoint/bugpoint.cpp')
| -rw-r--r-- | llvm/tools/bugpoint/bugpoint.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/tools/bugpoint/bugpoint.cpp b/llvm/tools/bugpoint/bugpoint.cpp index 25fe1a25245..646d43afef1 100644 --- a/llvm/tools/bugpoint/bugpoint.cpp +++ b/llvm/tools/bugpoint/bugpoint.cpp @@ -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; |

