2003-11-05 Elena Zannoni <ezannoni@redhat.com>
* coffread.c (coff_symtab_read): Remove passing of info parameter to prim_record_minimal_symbol_and_info.
This commit is contained in:
parent
8af580fccd
commit
29e0a0623d
2 changed files with 6 additions and 8 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-11-05 Elena Zannoni <ezannoni@redhat.com>
|
||||
|
||||
* coffread.c (coff_symtab_read): Remove passing of info parameter
|
||||
to prim_record_minimal_symbol_and_info.
|
||||
|
||||
2003-11-05 Elena Zannoni <ezannoni@redhat.com>
|
||||
|
||||
* coffread.c (process_coff_symbol): Delete CXUX_TARGET macro use.
|
||||
|
|
|
@ -926,15 +926,8 @@ coff_symtab_read (long symtab_offset, unsigned int nsyms,
|
|||
if (cs->c_name[0] != '@' /* Skip tdesc symbols */ )
|
||||
{
|
||||
struct minimal_symbol *msym;
|
||||
|
||||
/* FIXME: cagney/2001-02-01: The nasty (int) -> (long)
|
||||
-> (void*) cast is to ensure that that the value of
|
||||
cs->c_sclass can be correctly stored in a void
|
||||
pointer in MSYMBOL_INFO. Better solutions
|
||||
welcome. */
|
||||
gdb_assert (sizeof (void *) >= sizeof (cs->c_sclass));
|
||||
msym = prim_record_minimal_symbol_and_info
|
||||
(cs->c_name, tmpaddr, ms_type, (void *) (long) cs->c_sclass,
|
||||
(cs->c_name, tmpaddr, ms_type, NULL,
|
||||
sec, NULL, objfile);
|
||||
if (msym)
|
||||
COFF_MAKE_MSYMBOL_SPECIAL (cs->c_sclass, msym);
|
||||
|
|
Loading…
Add table
Reference in a new issue