diff options
Diffstat (limited to 'llvm/tools/llvm-strings/llvm-strings.cpp')
-rw-r--r-- | llvm/tools/llvm-strings/llvm-strings.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/tools/llvm-strings/llvm-strings.cpp b/llvm/tools/llvm-strings/llvm-strings.cpp index 996610d26b2..51313d73401 100644 --- a/llvm/tools/llvm-strings/llvm-strings.cpp +++ b/llvm/tools/llvm-strings/llvm-strings.cpp @@ -54,6 +54,9 @@ static cl::opt<radix> cl::init(none)); static cl::alias RadixShort("t", cl::desc(""), cl::aliasopt(Radix)); +static cl::extrahelp + HelpResponse("\nPass @FILE as argument to read options from FILE.\n"); + static void strings(raw_ostream &OS, StringRef FileName, StringRef Contents) { auto print = [&OS, FileName](unsigned Offset, StringRef L) { if (L.size() < static_cast<size_t>(MinLength)) |