diff --git a/llvm/tools/yaml2obj/yaml2obj.cpp b/llvm/tools/yaml2obj/yaml2obj.cpp index d18b2c17512bb..8a44c44eedc0a 100644 --- a/llvm/tools/yaml2obj/yaml2obj.cpp +++ b/llvm/tools/yaml2obj/yaml2obj.cpp @@ -37,7 +37,8 @@ cl::opt Input(cl::Positional, cl::desc(""), 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 @@ cl::opt 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("-"),