From 025bb325db8dce957db69eaf148c5bec373d4bb6 Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Sun, 9 Jan 2011 03:20:33 +0000 Subject: 2011-01-08 Michael Snyder * m2-exp.y: Comment cleanup, mostly periods and spaces. * m2-lang.c: Ditto. * m2-typeprint.c: Ditto. * m2-valprint.c: Ditto. * m32c-tdep.c: Ditto. * m32r-linux-nat.c: Ditto. * m32r-rom.c: Ditto. * m32r-tdep.c: Ditto. * m32r-tdep.h: Ditto. * m68hc11-tdep.c: Ditto. * m58klinux-nat.c: Ditto. * m68k-tdep.c: Ditto. * m88k-tdep.c: Ditto. * m88k-tdep.h: Ditto. * machoread.c: Ditto. * macrocmd.c: Ditto. * macroexp.c: Ditto. * macrotab.c: Ditto. * main.c: Ditto. * maint.c: Ditto. * mdebugread.c: Ditto. * mdebugread.h: Ditto. * memattr.c: Ditto. * memattr.h: Ditto. * memory-map.h: Ditto. * mep-tdep.c: Ditto. * microblaze-rom.c: Ditto. * microblaze-tdep.c: Ditto. * minsyms.c: Ditto. * mips-irix-tdep.c: Ditto. * mips-linux-nat.c: Ditto. * mips-linux-tdep.c: Ditto. * mips-linux-tdep.h: Ditto. * mipsnbsd-nat.c: Ditto. * mipsnbsd-tdep.c: Ditto. * mipsread.c: Ditto. * mips-tdep.c: Ditto. * mips-tdep.h: Ditto. * mn10300-linux-tdep.c: Ditto. * mn10300-tdep.c: Ditto. * mn10300-tdep.h: Ditto. * monitor.c: Ditto. * monitor.h: Ditto. * moxie-tdep.c: Ditto. * moxie-tdep.h: Ditto. * mt-tdep.c: Ditto. --- gdb/microblaze-rom.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gdb/microblaze-rom.c') diff --git a/gdb/microblaze-rom.c b/gdb/microblaze-rom.c index 1bd2b9c..3e05ea8 100644 --- a/gdb/microblaze-rom.c +++ b/gdb/microblaze-rom.c @@ -31,7 +31,7 @@ static char *picobug_inits[] = static struct target_ops picobug_ops; static struct monitor_ops picobug_cmds; -/* Picobug only supports a subset of registers from MCore. In reality, +/* Picobug only supports a subset of registers from MCore. In reality, it doesn't support ss1, either. */ static char *picobug_regnames[] = { "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", @@ -81,7 +81,7 @@ picobug_dumpregs (struct regcache *regcache) { if (strchr (p, '-')) { - /* got a range. either r0-r7, r8-r15 or ss0-ss4. */ + /* Got a range. Either r0-r7, r8-r15 or ss0-ss4. */ if (strncmp (p, "r0", 2) == 0 || strncmp (p, "r8", 2) == 0) { int rn = (p[1] == '0' ? 0 : 8); @@ -98,7 +98,7 @@ picobug_dumpregs (struct regcache *regcache) } else if (strncmp (p, "ss", 2) == 0) { - /* get the next five values, ignoring the first. */ + /* Get the next five values, ignoring the first. */ int rn; p = strtok (NULL, " \t\r\n"); for (rn = 39; rn < 43; rn++) -- cgit v1.1