Typos fixed (#7970)

This commit is contained in:
Guillaume Valadon 2017-07-20 10:44:43 +02:00 committed by radare
parent aabd68b9c0
commit a8ad435c10
3 changed files with 3 additions and 3 deletions

View File

@ -426,7 +426,7 @@ print_insn_hppa (bfd_vma memaddr, disassemble_info *info)
fput_fp_reg (GET_FIELD (insn, 6, 10), info);
break;
/* 'fA' will not generate a space before the regsiter
/* 'fA' will not generate a space before the register
name. Normally that is fine. Except that it
causes problems with xmpyu which has no FP format
completer. */

View File

@ -133,7 +133,7 @@ static void r_debug_session_set_registers(RDebug *dbg, RDebugSession *session) {
RRegArena *arena;
RListIter *iterr;
int i;
/* Restore all regsiter values from the stack area pointed by session */
/* Restore all register values from the stack area pointed by session */
r_debug_reg_sync (dbg, R_REG_TYPE_ALL, 0);
for (i = 0; i < R_REG_TYPE_LAST; i++) {
iterr = session->reg[i];

View File

@ -12,7 +12,7 @@ static const char* types[R_REG_TYPE_LAST + 1] = {
"gpr", "drx", "fpu", "mmx", "xmm", "flg", "seg", NULL
};
// Take the 32bits name of a regester, and return the 64 bit name of it.
// Take the 32bits name of a register, and return the 64 bit name of it.
// If there is no equivalent 64 bit register return NULL.
R_API const char* r_reg_32_to_64(RReg* reg, const char* rreg32) {
// OMG this is shit...