Change the container-regs kv pair in the qRegsiterInfo

reply to be hex encoded, not decimal.

Fix the whitespace in the container-regs/invalidate-regs
documentation, fix one ambiguous hex/decimal number in an
example.

llvm-svn: 173225
This commit is contained in:
Jason Molenda
2013-01-23 04:38:32 +00:00
parent 243bc85355
commit fa85ca5fff
2 changed files with 42 additions and 42 deletions

View File

@@ -1560,7 +1560,7 @@ RNBRemote::HandlePacket_qRegisterInfo (const char *p)
{
if (i > 0)
ostrm << ',';
ostrm << DECIMAL << reg_entry->nub_info.pseudo_regs[i];
ostrm << RAW_HEXBASE << reg_entry->nub_info.pseudo_regs[i];
}
ostrm << ';';
}