diff options
author | James Henderson <jh7370@my.bristol.ac.uk> | 2019-06-21 11:22:20 +0000 |
---|---|---|
committer | James Henderson <jh7370@my.bristol.ac.uk> | 2019-06-21 11:22:20 +0000 |
commit | beb2493fb7ff3647f9564e5dfdc3db51d6dfbf7a (patch) | |
tree | 138d0f122223712005da182a793b19f6869479ba /llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp | |
parent | d5cf95e41c6e95e855fed978a90247778e4aa190 (diff) | |
download | bcm5719-llvm-beb2493fb7ff3647f9564e5dfdc3db51d6dfbf7a.tar.gz bcm5719-llvm-beb2493fb7ff3647f9564e5dfdc3db51d6dfbf7a.zip |
[llvm-dwarfdump] Remove unnecessary explicit -h behaviour
--help and -h are automatically supported by the command-line parser,
unless overridden by the tool. The behaviour of the PrintHelpMessage
being used for -h prior to this patch is subtly different to that
provided by --help automatically (it omits certain elements of help text
and options, such as --help-list), so overriding the default is not
desirable, without good reason. This patch removes the explicit
specification of -h and its behaviour, so that the default behaviour is
used.
Reviewed by: hintonda
Differential Revision: https://reviews.llvm.org/D63565
llvm-svn: 364029
Diffstat (limited to 'llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp')
-rw-r--r-- | llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp b/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp index 1efc96df665..701efade286 100644 --- a/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp +++ b/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp @@ -92,8 +92,6 @@ namespace { using namespace cl; OptionCategory DwarfDumpCategory("Specific Options"); -static opt<bool> Help("h", desc("Alias for -help"), Hidden, - cat(DwarfDumpCategory)); static list<std::string> InputFilenames(Positional, desc("<input object files or .dSYM bundles>"), ZeroOrMore, cat(DwarfDumpCategory)); @@ -575,11 +573,6 @@ int main(int argc, char **argv) { "pretty-print DWARF debug information in object files" " and debug info archives.\n"); - if (Help) { - PrintHelpMessage(/*Hidden =*/false, /*Categorized =*/true); - return 0; - } - // FIXME: Audit interactions between these two options and make them // compatible. if (Diff && Verbose) { |