* rs6000-nat.c (add_vmap, vmap_ldinfo, vmap_exec): Replace
DEPRECATED_STREQ by its expression. * coffread.c (coff_locate_sections, coff_symtab_read): Likewise. * xcoffread.c (read_xcoff_symtab, read_symbol_lineno, find_linenos) (scan_xcoff_symtab): Likewise. * hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code): Likewise. * f-lang.c (find_common_for_function): Likewise. * objc-exp.y (parse_number): Likewise. * defs.h (DEPRECATED_STREQ): Remove.
This commit is contained in:
parent
d15cf01ce6
commit
7ecb65322d
8 changed files with 41 additions and 26 deletions
|
@ -637,8 +637,8 @@ find_common_for_function (char *name, char *funcname)
|
|||
|
||||
while (tmp != NULL)
|
||||
{
|
||||
if (DEPRECATED_STREQ (tmp->name, name)
|
||||
&& DEPRECATED_STREQ (tmp->owning_function, funcname))
|
||||
if (strcmp (tmp->name, name) == 0
|
||||
&& strcmp (tmp->owning_function, funcname) == 0)
|
||||
return (tmp);
|
||||
else
|
||||
tmp = tmp->next;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue