summaryrefslogtreecommitdiff
path: root/opcodes/mcore-dis.c
diff options
context:
space:
mode:
Diffstat (limited to 'opcodes/mcore-dis.c')
-rw-r--r--opcodes/mcore-dis.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/opcodes/mcore-dis.c b/opcodes/mcore-dis.c
index 7ebfd37a56..6df124f958 100644
--- a/opcodes/mcore-dis.c
+++ b/opcodes/mcore-dis.c
@@ -169,7 +169,7 @@ print_insn_mcore (memaddr, info)
if (strcmp (op->name, "bsr") == 0)
{
- /* for bsr, we'll try to get a symbol for the target */
+ /* For bsr, we'll try to get a symbol for the target. */
val = memaddr + 2 + (val << 1);
if (info->print_address_func && val != 0)
@@ -268,12 +268,12 @@ print_insn_mcore (memaddr, info)
break;
default:
- /* if the disassembler lags the instruction set */
+ /* If the disassembler lags the instruction set. */
fprintf (stream, "\tundecoded operands, inst is 0x%04x", inst);
break;
}
}
- /* Say how many bytes we consumed? */
+ /* Say how many bytes we consumed. */
return 2;
}