mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-29 06:10:48 +00:00
[llvm-readobj] NFC. Add -help description of --hex-dump and
--string-dump
This commit is contained in:
parent
4af9b5466a
commit
150dfe6e6c
@ -183,14 +183,18 @@ namespace opts {
|
||||
cl::aliasopt(ProgramHeaders));
|
||||
|
||||
// --string-dump, -p
|
||||
cl::list<std::string> StringDump("string-dump", cl::desc("<number|name>"),
|
||||
cl::ZeroOrMore);
|
||||
cl::list<std::string> StringDump(
|
||||
"string-dump", cl::value_desc("number|name"),
|
||||
cl::desc("Display the specified section(s) as a list of strings"),
|
||||
cl::ZeroOrMore);
|
||||
cl::alias StringDumpShort("p", cl::desc("Alias for --string-dump"),
|
||||
cl::aliasopt(StringDump), cl::Prefix);
|
||||
|
||||
// --hex-dump, -x
|
||||
cl::list<std::string> HexDump("hex-dump", cl::desc("<number|name>"),
|
||||
cl::ZeroOrMore);
|
||||
cl::list<std::string>
|
||||
HexDump("hex-dump", cl::value_desc("number|name"),
|
||||
cl::desc("Display the specified section(s) as hexadecimal bytes"),
|
||||
cl::ZeroOrMore);
|
||||
cl::alias HexDumpShort("x", cl::desc("Alias for --hex-dump"),
|
||||
cl::aliasopt(HexDump), cl::Prefix);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user