* Makefile.in (CLIBS): Add $(LIBIBERTY) before, in addition to
authorStan Shebs <shebs@codesourcery.com>
Fri, 10 Feb 1995 00:02:15 +0000 (00:02 +0000)
committerStan Shebs <shebs@codesourcery.com>
Fri, 10 Feb 1995 00:02:15 +0000 (00:02 +0000)
after, any host/target/native libraries.
* dcache.c (insque, remque): Remove declarations.
* gdbtypes.h (type_code): Remove trailing comma.

From Peter Schauer:
* xcoffread.c (read_xcoff_symtab) [C_HIDEXT]: Move #ifdef
STATIC_NODEBUG_VARS inside case.

gdb/ChangeLog
gdb/dcache.c
gdb/gdbtypes.h
gdb/xcoffread.c

index b7dbd7b11d0e1317fb4277ebe81ed76b4026fcb0..fb03eae9d01102430c8189c5f3da9eb7b8d93b7f 100644 (file)
@@ -1,3 +1,14 @@
+Thu Feb  9 15:46:39 1995  Stan Shebs  <shebs@andros.cygnus.com>
+
+       * Makefile.in (CLIBS): Add $(LIBIBERTY) before, in addition to
+       after, any host/target/native libraries.
+       * dcache.c (insque, remque): Remove declarations.
+       * gdbtypes.h (type_code): Remove trailing comma.
+
+       From Peter Schauer:
+       * xcoffread.c (read_xcoff_symtab) [C_HIDEXT]: Move #ifdef
+       STATIC_NODEBUG_VARS inside case.
+
 Thu Feb  9 07:43:41 1995  Jim Kingdon  <kingdon@deneb.cygnus.com>
 
        * config/sparc/tm-sun4sol2.h: Define STATIC_TRANSFORM_NAME.
index aaa01d0fe2279e45a3e1540524e4021725e24bbd..159c3acb4c65c3cd44c6b34ca2fdaaa24f16d047 100644 (file)
@@ -23,9 +23,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "dcache.h"
 #include "gdbcmd.h"
 
-extern int insque();
-extern int remque();
-
 int remote_dcache = 0;
 
 /* The data cache records all the data read from the remote machine
index b530f8cb20a46ba90ba9736e1d1816870cd42b69..27166c17c9da484633a2a2924b2d805a0379d656 100644 (file)
@@ -120,7 +120,7 @@ enum type_code
   TYPE_CODE_BOOL,
 
   /* Fortran */
-  TYPE_CODE_COMPLEX,           /* Complex float */
+  TYPE_CODE_COMPLEX            /* Complex float */
 };
 
 /* For now allow source to use TYPE_CODE_CLASS for C++ classes, as an
index a7dc46b262f125aa22d3cf03b63a29d38ac53499..34acb06fad31049943ee6a91739d80fea3afcb96 100644 (file)
@@ -1640,11 +1640,11 @@ read_xcoff_symtab (objfile, nsyms)
          /* Ignore these.  */
          break;
 
-#ifdef STATIC_NODEBUG_VARS
          /* This is wrong.  These symbols are XMC_TC, which means that
             the value of the symbol is the address of the TOC entry, not
             the address of the variable itself.  */
        case C_HIDEXT:
+#ifdef STATIC_NODEBUG_VARS
          {
            /* This is the only place that static variables show up in files
               compiled without -g.  External variables also have a C_EXT,