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.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@106020 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectDisassemble.h b/source/Commands/CommandObjectDisassemble.h
index 2cf800d..e4587cb 100644
--- a/source/Commands/CommandObjectDisassemble.h
+++ b/source/Commands/CommandObjectDisassemble.h
@@ -49,7 +49,8 @@
         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[];
     };