mirror of
https://github.com/intel/llvm.git
synced 2026-01-21 04:14:03 +08:00
<rdar://problem/10033754>
Fixed an issue with the options for memory read where --count couldn't be used with the --binary option when writing data to a file. Also removed the GDB format option from the --binary version of memory read. llvm-svn: 145067
This commit is contained in:
@@ -323,10 +323,10 @@ public:
|
||||
// Add the "--format" and "--count" options to group 1 and 3
|
||||
m_option_group.Append (&m_format_options,
|
||||
OptionGroupFormat::OPTION_GROUP_FORMAT | OptionGroupFormat::OPTION_GROUP_COUNT,
|
||||
LLDB_OPT_SET_1 | LLDB_OPT_SET_3);
|
||||
LLDB_OPT_SET_1 | LLDB_OPT_SET_2 | LLDB_OPT_SET_3);
|
||||
m_option_group.Append (&m_format_options,
|
||||
OptionGroupFormat::OPTION_GROUP_GDB_FMT,
|
||||
LLDB_OPT_SET_1 | LLDB_OPT_SET_2 | LLDB_OPT_SET_3);
|
||||
LLDB_OPT_SET_1 | LLDB_OPT_SET_3);
|
||||
// Add the "--size" option to group 1 and 2
|
||||
m_option_group.Append (&m_format_options,
|
||||
OptionGroupFormat::OPTION_GROUP_SIZE,
|
||||
|
||||
Reference in New Issue
Block a user