Change the disassemble option to specify the architecture from '-a'
to '-A'.
Add option '-a' / '--address' to disassemble which will find the
function that contains that address, and disassemble the entire function.
<rdar://problem/13436207>
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@179258 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectDisassemble.h b/source/Commands/CommandObjectDisassemble.h
index 693b524..7a75098 100644
--- a/source/Commands/CommandObjectDisassemble.h
+++ b/source/Commands/CommandObjectDisassemble.h
@@ -80,6 +80,7 @@
ArchSpec arch;
bool some_location_specified; // If no location was specified, we'll select "at_pc". This should be set
// in SetOptionValue if anything the selects a location is set.
+ lldb::addr_t symbol_containing_addr;
static OptionDefinition g_option_table[];
};