include "llvm/Option/OptParser.td" class F : Flag<["-", "--"], name>, HelpText; class S : Separate<["-", "--"], name>, HelpText; def help : F<"help", "Display this help">; def : F<"h", "Alias for --help">, Alias; def version : F<"version", "Display the version of this program">; def execFileNames : S<"e", "Specify the executable/library files to get the list of *.dwo from.">, MetaVarName<"">; def outputFileName : S<"o", "Specify the output file.">, MetaVarName<"">; def continueOnCuIndexOverflow: F<"continue-on-cu-index-overflow", "This turns an error when offset for .debug_*.dwo sections " "overfolws into a warning.">, MetaVarName<"">;