aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2004-05-03 22:20:18 +0000
committerMichael Snyder <msnyder@vmware.com>2004-05-03 22:20:18 +0000
commitdc3054549815358859319ddb23f5a21162eb3b79 (patch)
tree3d6cd9a6152f20c75f4a8ba6b1ec62f8406d58f1 /gdb
parentfabf64aa42dc3a82e874465d4a3929ee37ed62db (diff)
downloadgdb-dc3054549815358859319ddb23f5a21162eb3b79.zip
gdb-dc3054549815358859319ddb23f5a21162eb3b79.tar.gz
gdb-dc3054549815358859319ddb23f5a21162eb3b79.tar.bz2
2004-05-03 Michael Snyder <msnyder@redhat.com>
* mips-tdep.c (mips_gdbarch_init): Fix typo in comment. (heuristic_proc_start): Whitespace cleanup.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/mips-tdep.c7
2 files changed, 8 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index a1d9973..f707e0d 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2004-05-03 Michael Snyder <msnyder@redhat.com>
+
+ * mips-tdep.c (mips_gdbarch_init): Fix typo in comment.
+ (heuristic_proc_start): Whitespace cleanup.
+
2004-05-04 Mark Kettenis <kettenis@gnu.org>
* sun3-nat.c: Remove file.
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index 5c77340..54f79f8 100644
--- a/gdb/mips-tdep.c
+++ b/gdb/mips-tdep.c
@@ -1905,9 +1905,8 @@ heuristic_proc_start (CORE_ADDR pc)
{
static int blurb_printed = 0;
- warning
- ("GDB can't find the start of the function at 0x%s.",
- paddr_nz (pc));
+ warning ("GDB can't find the start of the function at 0x%s.",
+ paddr_nz (pc));
if (!blurb_printed)
{
@@ -5441,7 +5440,7 @@ mips_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
if (found_abi == MIPS_ABI_UNKNOWN && info.abfd != NULL)
bfd_map_over_sections (info.abfd, mips_find_abi_section, &found_abi);
- /* If we have no usefu BFD information, use the ABI from the last
+ /* If we have no useful BFD information, use the ABI from the last
MIPS architecture (if there is one). */
if (found_abi == MIPS_ABI_UNKNOWN && info.abfd == NULL && arches != NULL)
found_abi = gdbarch_tdep (arches->gdbarch)->found_abi;