Clarify the doc string for register-name a bit, add flags.

llvm-svn: 162503
This commit is contained in:
Jim Ingham 2012-08-23 23:47:08 +00:00
parent 039330c292
commit 84c7bd7406
1 changed files with 4 additions and 1 deletions

View File

@ -633,13 +633,16 @@ static const char *
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";
}