diff options
author | Alexander Shaposhnikov <shal1t712@gmail.com> | 2018-04-24 21:44:13 +0000 |
---|---|---|
committer | Alexander Shaposhnikov <shal1t712@gmail.com> | 2018-04-24 21:44:13 +0000 |
commit | b3bfd3b028ce99efb9e65d42a563becae3ea4ddc (patch) | |
tree | 666df2f51f5614e057574efdd7d768202ba6e2e5 /llvm/tools/llvm-objcopy | |
parent | 5176039795d7c98f1416658f6dd453c8e6cf629e (diff) | |
download | bcm5719-llvm-b3bfd3b028ce99efb9e65d42a563becae3ea4ddc.tar.gz bcm5719-llvm-b3bfd3b028ce99efb9e65d42a563becae3ea4ddc.zip |
[llvm-objcopy] Adjust the help message
Capitalize the first letter,
make the text a bit more consistent.
NFC.
Differential revision: https://reviews.llvm.org/D46025
llvm-svn: 330777
Diffstat (limited to 'llvm/tools/llvm-objcopy')
-rw-r--r-- | llvm/tools/llvm-objcopy/Opts.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/llvm-objcopy/Opts.td b/llvm/tools/llvm-objcopy/Opts.td index d63f90675d5..15723dc4b65 100644 --- a/llvm/tools/llvm-objcopy/Opts.td +++ b/llvm/tools/llvm-objcopy/Opts.td @@ -23,7 +23,7 @@ defm split_dwo : Eq<"split-dwo">, HelpText<"Equivalent to extract-dwo on the input file to <dwo-file>, then strip-dwo on the input file">; defm add_gnu_debuglink : Eq<"add-gnu-debuglink">, MetaVarName<"debug-file">, - HelpText<"adds a .gnu_debuglink for <debug-file>">; + HelpText<"Add a .gnu_debuglink for <debug-file>">; defm remove_section : Eq<"remove-section">, MetaVarName<"section">, HelpText<"Remove <section>">; @@ -41,11 +41,11 @@ defm add_section : Eq<"add-section">, MetaVarName<"section=file">, HelpText<"Make a section named <section> with the contents of <file>.">; def strip_all : Flag<["-", "--"], "strip-all">, - HelpText<"Removes non-allocated sections other than .gnu.warning* sections">; + HelpText<"Remove non-allocated sections other than .gnu.warning* sections">; def strip_all_gnu : Flag<["-", "--"], "strip-all-gnu">, HelpText<"Compaitable with GNU objcopy's --strip-all">; def strip_debug : Flag<["-", "--"], "strip-debug">, - HelpText<"Removes all debug information">; + HelpText<"Remove all debug information">; def strip_dwo : Flag<["-", "--"], "strip-dwo">, HelpText<"Remove all DWARF .dwo sections from file">; def strip_sections : Flag<["-", "--"], "strip-sections">, |