1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Add usage blurb

llvm-svn: 9246
This commit is contained in:
Chris Lattner 2003-10-18 21:55:35 +00:00
parent 27798b47fb
commit babd7c5dfd

View 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;