Skip to content

Commit 4cde20d

Browse files
committed
Remove '*' from help Usage label.
1 parent b54317b commit 4cde20d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

llvm/test/tools/llvm-readtapi/command-line.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
; RUN: not llvm-readtapi -merge -compact %t/tmp.tbd %t/tmp2.tbd --filetype=tbd-v2 2>&1 | FileCheck %s --check-prefix FILE_FORMAT
55

66
CHECK: OVERVIEW: LLVM TAPI file reader and manipulator
7-
CHECK: llvm-readtapi [options]* [-arch <arch>]* <inputs> [-o <output>]*
7+
CHECK: USAGE: llvm-readtapi [options] [-arch <arch>]* <inputs> [-o <output>]*
88
CHECK: OPTIONS:
99
CHECK: -help display this help
1010

llvm/tools/llvm-readtapi/llvm-readtapi.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,10 +171,10 @@ int main(int Argc, char **Argv) {
171171
opt::InputArgList Args = Tbl.parseArgs(
172172
Argc, Argv, OPT_UNKNOWN, Saver, [&](StringRef Msg) { reportError(Msg); });
173173
if (Args.hasArg(OPT_help)) {
174-
Tbl.printHelp(
175-
outs(),
176-
"llvm-readtapi [options]* [-arch <arch>]* <inputs> [-o <output>]*",
177-
"LLVM TAPI file reader and manipulator");
174+
Tbl.printHelp(outs(),
175+
"USAGE: llvm-readtapi [options] [-arch <arch>]* <inputs> [-o "
176+
"<output>]*",
177+
"LLVM TAPI file reader and manipulator");
178178
return EXIT_SUCCESS;
179179
}
180180

0 commit comments

Comments
 (0)