aboutsummaryrefslogtreecommitdiff
path: root/gdb/i386-nat.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2004-03-05 20:58:00 +0000
committerMark Kettenis <kettenis@gnu.org>2004-03-05 20:58:00 +0000
commitf2e7c15d990b428a29fe0183ae810f29e722d21a (patch)
tree6a62e2b1046a08d58c9eec0b9bde1c887ecf92c6 /gdb/i386-nat.c
parent68715859c7df9bce56e502bd297a3993a9592786 (diff)
downloadgdb-f2e7c15d990b428a29fe0183ae810f29e722d21a.zip
gdb-f2e7c15d990b428a29fe0183ae810f29e722d21a.tar.gz
gdb-f2e7c15d990b428a29fe0183ae810f29e722d21a.tar.bz2
* i386-nat.c: Fix typo in comment. Re-introduce paranoiac.
* i386obsd-tdep.c: Correct spelling in comment. * i386nbsd-tdep.c: Correct spelling in comment. * sparc-tdep.c: Correct spelling in comments.
Diffstat (limited to 'gdb/i386-nat.c')
-rw-r--r--gdb/i386-nat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/i386-nat.c b/gdb/i386-nat.c
index a20e9b0..95b4609 100644
--- a/gdb/i386-nat.c
+++ b/gdb/i386-nat.c
@@ -454,7 +454,7 @@ i386_handle_nonaligned_watchpoint (i386_wp_op_t what, CORE_ADDR addr, int len,
while (len > 0)
{
int align = addr % max_wp_len;
- /* Four (eigth on AMD64) is the maximum length a debug register
+ /* Four (eight on AMD64) is the maximum length a debug register
can watch. */
int try = (len > max_wp_len ? (max_wp_len - 1) : len - 1);
int size = size_try_array[try][align];
@@ -582,7 +582,7 @@ i386_stopped_data_address (void)
watchpoint, not a hardware breakpoint. The reason is
that GDB doesn't call the target_stopped_data_address
method except for data watchpoints. In other words, I'm
- being paranoid. */
+ being paranoiac. */
&& I386_DR_GET_RW_LEN (i) != 0)
{
addr = dr_mirror[i];