diff options
author | Fred Fish <fnf@specifix.com> | 1996-11-25 20:09:27 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-11-25 20:09:27 +0000 |
commit | 22ba28a51a83e4be86356995cea16ca942a22685 (patch) | |
tree | c8ba858e21e16a38649ce2b12486285e5e176b5c /gdb | |
parent | 05ccbdfdd2e71b1dafc8561a01ac8945e676e1af (diff) | |
download | gdb-22ba28a51a83e4be86356995cea16ca942a22685.zip gdb-22ba28a51a83e4be86356995cea16ca942a22685.tar.gz gdb-22ba28a51a83e4be86356995cea16ca942a22685.tar.bz2 |
From: Paul Eggert <eggert@twinsun.com>
* remote-bug.c (wait_strings): Avoid creating a trigraph.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 14 | ||||
-rw-r--r-- | gdb/remote-bug.c | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 104cfd0..424c348 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,17 @@ +Mon Nov 25 13:17:16 1996 Fred Fish <fnf@ninemoons.com> + + From: Paul Eggert <eggert@twinsun.com> + * remote-bug.c (wait_strings): Avoid creating a trigraph. + +start-sanitize-d10v +Fri Nov 22 15:55:22 1996 Martin M. Hunt <hunt@pizza.cygnus.com> + + * valops.c (value_at, value_fetch_lazy): Put in D10V call + to fix up address pointers. + * values.c (value_from_longest): Removed previous d10v changes. + * config/d10v/tm-d10v.h (TARGET_PTR_BIT): Change to 4 bytes. + +end-sanitize-d10v Fri Nov 22 10:06:19 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) * config/i386/nm-i386v4.h (LOSING_POLL): Define, needed for diff --git a/gdb/remote-bug.c b/gdb/remote-bug.c index cd3b798..4e29c0e 100644 --- a/gdb/remote-bug.c +++ b/gdb/remote-bug.c @@ -270,7 +270,7 @@ bug_resume (pid, step, sig) static char *wait_strings[] = { "At Breakpoint", "Exception: Data Access Fault (Local Bus Timeout)", - "\r8???-Bug>", + "\r8??\?-Bug>", /* The '\?' avoids creating a trigraph */ "\r197-Bug>", NULL, }; |