diff options
author | Per Bothner <per@bothner.com> | 1992-12-22 23:46:19 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1992-12-22 23:46:19 +0000 |
commit | 086c5e37f4a1de76b0e528ca9caa642cdc4b63df (patch) | |
tree | 6c17717aba1d8d06d72bab9f7a60620051fc87a8 /ld/ldsym.c | |
parent | 2f5e51f726c367215c4cc8c923616d129f5b6840 (diff) | |
download | gdb-086c5e37f4a1de76b0e528ca9caa642cdc4b63df.zip gdb-086c5e37f4a1de76b0e528ca9caa642cdc4b63df.tar.gz gdb-086c5e37f4a1de76b0e528ca9caa642cdc4b63df.tar.bz2 |
* ldexp.c, ldlang.c, ldmain.c, ldsym.c, ldwarn.c: Use new
macro bfd_asymbol_bfd as appropriate.
* Makefile.in: Un-duplicate ldlex.c dependency.
* condigure.in: Replace my_host case table by sourcing
../bfd/configure.host. Allow std-host as the default.
* ldmisc.c: Change logic for C++ name demangling: There is
no initial '_' to remove from stab-derived function names.
Diffstat (limited to 'ld/ldsym.c')
-rw-r--r-- | ld/ldsym.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -467,7 +467,7 @@ asymbol **output_buffer; { /* We are only interested in outputting globals at this stage in special circumstances */ - if (p->the_bfd == entry->the_bfd + if (bfd_asymbol_bfd(p) == entry->the_bfd && flag_is_not_at_end(p->flags)) { /* And this is one of them */ *(output_buffer++) = p; |