From: Jim Kingdon Date: Thu, 29 Jul 1993 17:14:38 +0000 (+0000) Subject: * hppa-tdep.c (pc_in_linker_stub): Fix unclosed comments. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6e35b037df55bd435410c5965c94e0ff7ca460d4;p=binutils-gdb.git * hppa-tdep.c (pc_in_linker_stub): Fix unclosed comments. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bcb069a3828..bc0eeba1ac5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ +Thu Jul 29 12:09:46 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * hppa-tdep.c (pc_in_linker_stub): Fix unclosed comments. + Wed Jul 28 13:19:34 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + * config/mips/xm-mips.h: Define HAVE_TERMIOS. + * dbxread.c (record_minimal_symbol): Don't put gcc_compiled or __gnu_compiled* symbols into the minimal symbols. diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 90dfa001fd0..4bad651e68a 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -325,7 +325,7 @@ pc_in_linker_stub (pc) from the given PC, then backward. */ for (i = 0; i < 4; i++) { - /* If we hit something with an unwind, stop searching this direction. + /* If we hit something with an unwind, stop searching this direction. */ if (find_unwind_entry (pc + i * 4) != 0) break; @@ -347,7 +347,7 @@ pc_in_linker_stub (pc) /* Now look backward. */ for (i = 0; i < 4; i++) { - /* If we hit something with an unwind, stop searching this direction. + /* If we hit something with an unwind, stop searching this direction. */ if (find_unwind_entry (pc - i * 4) != 0) break;