diff options
author | Greg Clayton <gclayton@apple.com> | 2012-12-14 22:36:35 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-12-14 22:36:35 +0000 |
commit | 1fb2e7dfe1d42d302315d3684945f3af1600e00a (patch) | |
tree | 64d8d1b6392999f05e1c26de885758cee2170b0f /lldb/source/Commands/CommandObjectDisassemble.h | |
parent | 00a204c87d3f28ee165f69c4b3fc34cbee531d8d (diff) | |
download | bcm5719-llvm-1fb2e7dfe1d42d302315d3684945f3af1600e00a.tar.gz bcm5719-llvm-1fb2e7dfe1d42d302315d3684945f3af1600e00a.zip |
Switch "disassemble" with no arguments or options to disassemble the current frame instead of around the current PC.
llvm-svn: 170254
Diffstat (limited to 'lldb/source/Commands/CommandObjectDisassemble.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectDisassemble.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectDisassemble.h b/lldb/source/Commands/CommandObjectDisassemble.h index 7587c0a97ca..2433c1de1a5 100644 --- a/lldb/source/Commands/CommandObjectDisassemble.h +++ b/lldb/source/Commands/CommandObjectDisassemble.h @@ -62,7 +62,7 @@ public: uint32_t num_instructions; bool raw; std::string func_name; - bool cur_function; + bool current_function; lldb::addr_t start_addr; lldb::addr_t end_addr; bool at_pc; |