[Lldb-commits] [lldb] r117616 - /lldb/trunk/source/Commands/CommandObjectDisassemble.cpp
Caroline Tice
ctice at apple.com
Thu Oct 28 15:19:36 PDT 2010
Author: ctice
Date: Thu Oct 28 17:19:36 2010
New Revision: 117616
URL: http://llvm.org/viewvc/llvm-project?rev=117616&view=rev
Log:
Comment out uninmplemented command option (-f) for disassemble
command.
Modified:
lldb/trunk/source/Commands/CommandObjectDisassemble.cpp
Modified: lldb/trunk/source/Commands/CommandObjectDisassemble.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectDisassemble.cpp?rev=117616&r1=117615&r2=117616&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectDisassemble.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectDisassemble.cpp Thu Oct 28 17:19:36 2010
@@ -130,7 +130,7 @@
{ 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 }
};
More information about the lldb-commits
mailing list