mirror of
https://github.com/intel/llvm.git
synced 2026-01-23 07:58:23 +08:00
Add OptionParser.h
llvm-svn: 190063
This commit is contained in:
@@ -351,9 +351,9 @@ protected:
|
||||
const OptionDefinition
|
||||
CommandObjectRegisterRead::CommandOptions::g_option_table[] =
|
||||
{
|
||||
{ LLDB_OPT_SET_ALL, false, "alternate", 'A', no_argument , NULL, 0, eArgTypeNone , "Display register names using the alternate register name if there is one."},
|
||||
{ LLDB_OPT_SET_1 , false, "set" , 's', required_argument, NULL, 0, eArgTypeIndex , "Specify which register sets to dump by index."},
|
||||
{ LLDB_OPT_SET_2 , false, "all" , 'a', no_argument , NULL, 0, eArgTypeNone , "Show all register sets."},
|
||||
{ LLDB_OPT_SET_ALL, false, "alternate", 'A', OptionParser::eNoArgument , NULL, 0, eArgTypeNone , "Display register names using the alternate register name if there is one."},
|
||||
{ LLDB_OPT_SET_1 , false, "set" , 's', OptionParser::eRequiredArgument, NULL, 0, eArgTypeIndex , "Specify which register sets to dump by index."},
|
||||
{ LLDB_OPT_SET_2 , false, "all" , 'a', OptionParser::eNoArgument , NULL, 0, eArgTypeNone , "Show all register sets."},
|
||||
};
|
||||
|
||||
uint32_t
|
||||
|
||||
Reference in New Issue
Block a user