summaryrefslogtreecommitdiff
path: root/tools/llvm-profdata
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2016-08-03 23:10:51 +0000
committerJustin Bogner <mail@justinbogner.com>2016-08-03 23:10:51 +0000
commite1dd154bf698fa56eefa1f1a6369014c1bfd8f7d (patch)
tree5addcb9e8979b739c4ed55c23a17719c7df8c174 /tools/llvm-profdata
parent8669eef6f12bfd2ec8250757950d0c832af529f2 (diff)
llvm-profdata: Clarify the top level help
It wasn't very obvious that you're supposed to call help on the subcommands. This should help. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277678 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-profdata')
-rw-r--r--tools/llvm-profdata/llvm-profdata.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/llvm-profdata/llvm-profdata.cpp b/tools/llvm-profdata/llvm-profdata.cpp
index aec689b623f..d5c05daf9b6 100644
--- a/tools/llvm-profdata/llvm-profdata.cpp
+++ b/tools/llvm-profdata/llvm-profdata.cpp
@@ -665,6 +665,7 @@ int main(int argc, const char *argv[]) {
errs() << "OVERVIEW: LLVM profile data tools\n\n"
<< "USAGE: " << ProgName << " <command> [args...]\n"
<< "USAGE: " << ProgName << " <command> -help\n\n"
+ << "See each individual command --help for more details.\n"
<< "Available commands: merge, show\n";
return 0;
}