From: Davide Italiano Date: Wed, 2 Mar 2016 21:59:31 +0000 (+0000) Subject: [llvm-nm] Fix rendering of -s grouping with all the othe options. X-Git-Tag: llvmorg-3.9.0-rc1~12642 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f156763cfa7a562d672f29837ae71dcaed877766;p=platform%2Fupstream%2Fllvm.git [llvm-nm] Fix rendering of -s grouping with all the othe options. llvm-svn: 262525 --- diff --git a/llvm/tools/llvm-nm/llvm-nm.cpp b/llvm/tools/llvm-nm/llvm-nm.cpp index 50405a9..435e97e 100644 --- a/llvm/tools/llvm-nm/llvm-nm.cpp +++ b/llvm/tools/llvm-nm/llvm-nm.cpp @@ -159,7 +159,8 @@ cl::alias JustSymbolNames("j", cl::desc("Alias for --just-symbol-name"), // line. cl::list 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 FormatMachOasHex("x", cl::desc("Print symbol entry in hex, " "Mach-O only"), cl::Grouping);