Index: llvm/tools/yaml2obj/yaml2obj.cpp =================================================================== --- llvm/tools/yaml2obj/yaml2obj.cpp +++ llvm/tools/yaml2obj/yaml2obj.cpp @@ -37,7 +37,8 @@ cl::list D("D", cl::Prefix, cl::desc("Defined the specified macros to their specified " - "definition. The syntax is =")); + "definition. The syntax is ="), + cl::cat(Cat)); cl::opt DocNum("docnum", cl::init(1), @@ -47,7 +48,8 @@ static cl::opt MaxSize( "max-size", cl::init(10 * 1024 * 1024), cl::desc( - "Sets the maximum allowed output size (0 means no limit) [ELF only]")); + "Sets the maximum allowed output size (0 means no limit) [ELF only]"), + cl::cat(Cat)); cl::opt OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"), cl::init("-"),