[Lldb-commits] [lldb] r162503 - /lldb/trunk/source/Interpreter/CommandObject.cpp
Jim Ingham
jingham at apple.com
Thu Aug 23 16:47:08 PDT 2012
Author: jingham
Date: Thu Aug 23 18:47:08 2012
New Revision: 162503
URL: http://llvm.org/viewvc/llvm-project?rev=162503&view=rev
Log:
Clarify the doc string for register-name a bit, add flags.
Modified:
lldb/trunk/source/Interpreter/CommandObject.cpp
Modified: lldb/trunk/source/Interpreter/CommandObject.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandObject.cpp?rev=162503&r1=162502&r2=162503&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandObject.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandObject.cpp Thu Aug 23 18:47:08 2012
@@ -633,13 +633,16 @@
RegisterNameHelpTextCallback ()
{
return "Register names can be specified using the architecture specific names. "
- "They can also be specified using generic names.\n"
+ "They can also be specified using generic names. Not all generic entities have "
+ "registers backing them on all architectures. When they don't the generic name "
+ "will return an error.\n"
"The generic names defined in lldb are:\n"
"\n"
"pc - program counter register\n"
"ra - return address register\n"
"fp - frame pointer register\n"
"sp - stack pointer register\n"
+ "flags - the flags register\n"
"arg{1-6} - integer argument passing registers.\n";
}
More information about the lldb-commits
mailing list