diff options
author | Virgile Bello <virgile.bello@gmail.com> | 2013-09-05 16:42:23 +0000 |
---|---|---|
committer | Virgile Bello <virgile.bello@gmail.com> | 2013-09-05 16:42:23 +0000 |
commit | e2607b50ea6b6a651a3a640ed6ccf80f37fca182 (patch) | |
tree | 848082207b6646690b580b4fe252166ddbab9e0f /lldb/source/Commands/CommandObjectRegister.cpp | |
parent | f792acb20fd0233f2e5cf400ceabd4f2416db3b5 (diff) | |
download | bcm5719-llvm-e2607b50ea6b6a651a3a640ed6ccf80f37fca182.tar.gz bcm5719-llvm-e2607b50ea6b6a651a3a640ed6ccf80f37fca182.zip |
Add OptionParser.h
llvm-svn: 190063
Diffstat (limited to 'lldb/source/Commands/CommandObjectRegister.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectRegister.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectRegister.cpp b/lldb/source/Commands/CommandObjectRegister.cpp index ba43f23f34a..1cd6452b2f5 100644 --- a/lldb/source/Commands/CommandObjectRegister.cpp +++ b/lldb/source/Commands/CommandObjectRegister.cpp @@ -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 |