* 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.
This commit is contained in:
Per Bothner
1992-12-22 23:46:19 +00:00
parent 2f5e51f726
commit 086c5e37f4
4 changed files with 30 additions and 71 deletions

View File

@ -87,7 +87,7 @@ DEFUN(produce_warnings,(lgs,it),
ptr = lgs->srefs_chain;
while (ptr != (asymbol **)NULL) {
asymbol *ref = *ptr;
info("%B: %s\n", ref->the_bfd, fetch_warning(it));
info("%B: %s\n", bfd_asymbol_bfd(ref), fetch_warning(it));
ptr = (asymbol **)(ref->udata);
}
}