diff options
author | Caroline Tice <ctice@apple.com> | 2010-10-01 21:34:54 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2010-10-01 21:34:54 +0000 |
commit | 8d88020e920f60f12063b53f90cc1775b7d1578b (patch) | |
tree | e8e6946b9e46685a8ff7c839194089eb884190fd /lldb/source/Commands/CommandObjectDisassemble.cpp | |
parent | 9d0136274b28cf15540d19e7cd0cd5b8eb0bf51b (diff) | |
download | bcm5719-llvm-8d88020e920f60f12063b53f90cc1775b7d1578b.tar.gz bcm5719-llvm-8d88020e920f60f12063b53f90cc1775b7d1578b.zip |
Uncomment/fix "-f" command option for disassemble command.
llvm-svn: 115351
Diffstat (limited to 'lldb/source/Commands/CommandObjectDisassemble.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectDisassemble.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectDisassemble.cpp b/lldb/source/Commands/CommandObjectDisassemble.cpp index 24c1817a171..cfb487dc9c1 100644 --- a/lldb/source/Commands/CommandObjectDisassemble.cpp +++ b/lldb/source/Commands/CommandObjectDisassemble.cpp @@ -130,7 +130,7 @@ CommandObjectDisassemble::CommandOptions::g_option_table[] = { LLDB_OPT_SET_2, true, "name", 'n', required_argument, NULL, CommandCompletions::eSymbolCompletion, eArgTypeFunctionName, "Disassemble entire contents of the given function name."}, -//{ LLDB_OPT_SET_3, false, "current-frame", 'f', no_argument, NULL, 0, "<current-frame>", "Disassemble entire contents of the current frame's function."}, +{ LLDB_OPT_SET_3, false, "current-frame", 'f', no_argument, NULL, 0, eArgTypeNone, "Disassemble entire contents of the current frame's function."}, { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL } }; |