diff options
author | Caroline Tice <ctice@apple.com> | 2010-10-28 22:19:36 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2010-10-28 22:19:36 +0000 |
commit | dbaf18361ea9da3120c575940f8d77d3618e5980 (patch) | |
tree | 49d02a69c1be1c000cc3971d3b6cb2981cf8c345 /lldb/source/Commands | |
parent | 6e0d58968da828ce58d89aaeef867fd51e7cef3e (diff) | |
download | bcm5719-llvm-dbaf18361ea9da3120c575940f8d77d3618e5980.tar.gz bcm5719-llvm-dbaf18361ea9da3120c575940f8d77d3618e5980.zip |
Comment out uninmplemented command option (-f) for disassemble
command.
llvm-svn: 117616
Diffstat (limited to 'lldb/source/Commands')
-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 28863826202..30dea8a0da5 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, eArgTypeNone, "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 } }; |