summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2006-05-31 23:15:50 +0000
committerMichael Snyder <msnyder@specifix.com>2006-05-31 23:15:50 +0000
commit39aef06f2c0d38186a4f6e972367362ffe424314 (patch)
tree3cd968084c30be61996b5dd80eff1cda2ac4221d /gdb
parent2b4d4e4acd9edba2d3284d334f3c13aa17b993ad (diff)
downloadgdb-39aef06f2c0d38186a4f6e972367362ffe424314.tar.gz
2006-05-31 Michael Snyder <msnyder@redhat.com>
* mips-tdep.c: Comment tweaks.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/mips-tdep.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f2fb40061a6..08dbf762792 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2006-05-31 Michael Snyder <msnyder@redhat.com>
+
+ * mips-tdep.c: Comment tweaks.
+
2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
* Makefile.in (top_builddir): Update comments.
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index 6150f383428..ea6067c4641 100644
--- a/gdb/mips-tdep.c
+++ b/gdb/mips-tdep.c
@@ -887,8 +887,8 @@ mips32_relative_offset (ULONGEST inst)
return ((itype_immediate (inst) ^ 0x8000) - 0x8000) << 2;
}
-/* Determine whate to set a single step breakpoint while considering
- branch prediction */
+/* Determine where to set a single step breakpoint while considering
+ branch prediction. */
static CORE_ADDR
mips32_next_pc (CORE_ADDR pc)
{
@@ -5163,7 +5163,7 @@ mips_dump_tdep (struct gdbarch *current_gdbarch, struct ui_file *file)
{
int ef_mips_arch;
int ef_mips_32bitmode;
- /* determine the ISA */
+ /* Determine the ISA. */
switch (tdep->elf_flags & EF_MIPS_ARCH)
{
case E_MIPS_ARCH_1:
@@ -5182,7 +5182,7 @@ mips_dump_tdep (struct gdbarch *current_gdbarch, struct ui_file *file)
ef_mips_arch = 0;
break;
}
- /* determine the size of a pointer */
+ /* Determine the size of a pointer. */
ef_mips_32bitmode = (tdep->elf_flags & EF_MIPS_32BITMODE);
fprintf_unfiltered (file,
"mips_dump_tdep: tdep->elf_flags = 0x%x\n",