[Lldb-commits] [lldb] r115351 - /lldb/trunk/source/Commands/CommandObjectDisassemble.cpp

Caroline Tice ctice at apple.com
Fri Oct 1 14:34:54 PDT 2010


Author: ctice
Date: Fri Oct  1 16:34:54 2010
New Revision: 115351

URL: http://llvm.org/viewvc/llvm-project?rev=115351&view=rev
Log:
Uncomment/fix "-f" command option 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=115351&r1=115350&r2=115351&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectDisassemble.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectDisassemble.cpp Fri Oct  1 16:34:54 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, "<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 }
 };





More information about the lldb-commits mailing list