diff options
author | Stan Shebs <shebs@codesourcery.com> | 1995-02-10 00:02:15 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1995-02-10 00:02:15 +0000 |
commit | 76a457c01659bb1926e302fb3abee2d70ade437f (patch) | |
tree | 58509772b4875e9efd71e1517771b02104fd230d /gdb/xcoffread.c | |
parent | e91160dcbe058b1c08d8562952988939150a3090 (diff) | |
download | gdb-76a457c01659bb1926e302fb3abee2d70ade437f.zip gdb-76a457c01659bb1926e302fb3abee2d70ade437f.tar.gz gdb-76a457c01659bb1926e302fb3abee2d70ade437f.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/xcoffread.c')
-rw-r--r-- | gdb/xcoffread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index a7dc46b..34acb06 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -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, |