diff options
author | Jim Ingham <jingham@apple.com> | 2010-06-15 18:47:14 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2010-06-15 18:47:14 +0000 |
commit | 8651121c11e4b047924bafab305b7bec4395941b (patch) | |
tree | c49a0ff3ef8ed2de31b2c5d0db6f44d54890e296 /lldb/source/Commands/CommandObjectDisassemble.h | |
parent | 5947573f391a156c8a74cc39c84d63ea19462566 (diff) | |
download | bcm5719-llvm-8651121c11e4b047924bafab305b7bec4395941b.tar.gz bcm5719-llvm-8651121c11e4b047924bafab305b7bec4395941b.zip |
Change the Options parser over to use a mask rather than an ordinal for option sets.
Fixed the Disassemble arguments so you can't specify start address or name in multiple ways.
Fixed the command line input so you can specify the filename without "-f" even if you use other options.
llvm-svn: 106020
Diffstat (limited to 'lldb/source/Commands/CommandObjectDisassemble.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectDisassemble.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectDisassemble.h b/lldb/source/Commands/CommandObjectDisassemble.h index 2cf800d2f59..e4587cb72c2 100644 --- a/lldb/source/Commands/CommandObjectDisassemble.h +++ b/lldb/source/Commands/CommandObjectDisassemble.h @@ -49,7 +49,8 @@ public: uint32_t num_lines_context; bool raw; std::string m_func_name; - lldb::addr_t m_load_addr; + lldb::addr_t m_start_addr; + lldb::addr_t m_end_addr; static lldb::OptionDefinition g_option_table[]; }; |