[llvm-nm] Fix rendering of -s grouping with all the othe options.

llvm-svn: 262525
This commit is contained in:
Davide Italiano 2016-03-02 21:59:31 +00:00
parent 2b77c4603d
commit f156763cfa
1 changed files with 2 additions and 1 deletions

View File

@ -159,7 +159,8 @@ cl::alias JustSymbolNames("j", cl::desc("Alias for --just-symbol-name"),
// line.
cl::list<std::string> SegSect("s", cl::Positional, cl::ZeroOrMore,
cl::desc("Dump only symbols from this segment "
"and section name, Mach-O only"));
"and section name, Mach-O only"),
cl::Grouping);
cl::opt<bool> FormatMachOasHex("x", cl::desc("Print symbol entry in hex, "
"Mach-O only"), cl::Grouping);