[Lldb-commits] [lldb] r184226 - Fix the help for "image dump line-table" - its arguments are compilation units not modules.
Jim Ingham
jingham at apple.com
Tue Jun 18 13:27:12 PDT 2013
Author: jingham
Date: Tue Jun 18 15:27:11 2013
New Revision: 184226
URL: http://llvm.org/viewvc/llvm-project?rev=184226&view=rev
Log:
Fix the help for "image dump line-table" - its arguments are compilation units not modules.
Modified:
lldb/trunk/source/Commands/CommandObjectTarget.cpp
Modified: lldb/trunk/source/Commands/CommandObjectTarget.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectTarget.cpp?rev=184226&r1=184225&r2=184226&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectTarget.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectTarget.cpp Tue Jun 18 15:27:11 2013
@@ -2430,7 +2430,7 @@ public:
CommandObjectTargetModulesDumpLineTable (CommandInterpreter &interpreter) :
CommandObjectTargetModulesSourceFileAutoComplete (interpreter,
"target modules dump line-table",
- "Dump the debug symbol file for one or more target modules.",
+ "Dump the line table for one or more compilation units.",
NULL,
eFlagRequiresTarget)
{
More information about the lldb-commits
mailing list