* hppa-tdep.c (pc_in_linker_stub): Fix unclosed comments.
authorJim Kingdon <jkingdon@engr.sgi.com>
Thu, 29 Jul 1993 17:14:38 +0000 (17:14 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Thu, 29 Jul 1993 17:14:38 +0000 (17:14 +0000)
gdb/ChangeLog
gdb/hppa-tdep.c

index bcb069a38283b8c11588780ce2e05b926c6f73b6..bc0eeba1ac50c35a2f1063a6572634a692e9d4f5 100644 (file)
@@ -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.
 
index 90dfa001fd075a239e7763e32af9110da3ae0ab8..4bad651e68aae0ff8d2c6232c75888b35143bc3b 100644 (file)
@@ -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;