2003-11-23 Andrew Cagney <cagney@redhat.com>
* symfile.c (symbol_file_command): Replace STREQ with strcmp. * elfread.c (elf_symtab_read): Delete STREQ from comment.
This commit is contained in:
parent
4d9eda44f5
commit
66c5728963
@ -1,3 +1,9 @@
|
|||||||
|
2003-11-23 Andrew Cagney <cagney@redhat.com>
|
||||||
|
|
||||||
|
* symfile.c (symbol_file_command): Replace STREQ with strcmp.
|
||||||
|
|
||||||
|
* elfread.c (elf_symtab_read): Delete STREQ from comment.
|
||||||
|
|
||||||
2003-11-22 Andrew Cagney <cagney@redhat.com>
|
2003-11-22 Andrew Cagney <cagney@redhat.com>
|
||||||
|
|
||||||
* frame.c (deprecated_frame_xmalloc): Delete function.
|
* frame.c (deprecated_frame_xmalloc): Delete function.
|
||||||
|
@ -342,10 +342,7 @@ elf_symtab_read (struct objfile *objfile, int dynamic)
|
|||||||
else if (sym->flags & BSF_LOCAL)
|
else if (sym->flags & BSF_LOCAL)
|
||||||
{
|
{
|
||||||
/* Named Local variable in a Data section.
|
/* Named Local variable in a Data section.
|
||||||
Check its name for stabs-in-elf. The STREQ
|
Check its name for stabs-in-elf. */
|
||||||
macro checks the first character inline, so
|
|
||||||
we only actually do a strcmp function call on
|
|
||||||
names that start with 'B' or 'D'. */
|
|
||||||
int special_local_sect;
|
int special_local_sect;
|
||||||
if (strcmp ("Bbss.bss", sym->name) == 0)
|
if (strcmp ("Bbss.bss", sym->name) == 0)
|
||||||
special_local_sect = SECT_OFF_BSS (objfile);
|
special_local_sect = SECT_OFF_BSS (objfile);
|
||||||
|
@ -1226,7 +1226,7 @@ symbol_file_command (char *args, int from_tty)
|
|||||||
if (strcmp (*argv, "-mapped") == 0)
|
if (strcmp (*argv, "-mapped") == 0)
|
||||||
flags |= OBJF_MAPPED;
|
flags |= OBJF_MAPPED;
|
||||||
else
|
else
|
||||||
if (STREQ (*argv, "-readnow"))
|
if (strcmp (*argv, "-readnow") == 0)
|
||||||
flags |= OBJF_READNOW;
|
flags |= OBJF_READNOW;
|
||||||
else
|
else
|
||||||
if (**argv == '-')
|
if (**argv == '-')
|
||||||
|
Loading…
Reference in New Issue
Block a user