summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-18 21:55:35 +0000
committerChris Lattner <sabre@nondot.org>2003-10-18 21:55:35 +0000
commit670406d269283c8a7045a5b55c78049222cd3a07 (patch)
treeea1114210870938f61a049334cf7c286dc623820 /tools
parent1f0f1621f0be4efdf4b2d20046f7d081863b817e (diff)
downloadllvm-670406d269283c8a7045a5b55c78049222cd3a07.tar.gz
llvm-670406d269283c8a7045a5b55c78049222cd3a07.tar.bz2
llvm-670406d269283c8a7045a5b55c78049222cd3a07.tar.xz
Add usage blurb
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9246 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/bugpoint/bugpoint.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp
index 25fe1a2524..646d43afef 100644
--- a/tools/bugpoint/bugpoint.cpp
+++ b/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;