forked from Imagelibrary/binutils-gdb
* symfile.c (add_symbol_file_command): Properly reformat "else if"
code. * coffread.c (coff_symtab_read): Ditto.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2000-06-12 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
|
||||
|
||||
* symfile.c (add_symbol_file_command): Properly reformat "else if"
|
||||
code.
|
||||
* coffread.c (coff_symtab_read): Ditto.
|
||||
|
||||
Mon Jun 12 15:24:04 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
* Makefile.in (SER_HARDWIRE): Set using autoconf.
|
||||
|
||||
@@ -982,15 +982,13 @@ coff_symtab_read (symtab_offset, nsyms, objfile)
|
||||
SMASH_TEXT_ADDRESS (tmpaddr);
|
||||
#endif
|
||||
}
|
||||
else
|
||||
if (sec == SECT_OFF_DATA (objfile))
|
||||
else if (sec == SECT_OFF_DATA (objfile))
|
||||
{
|
||||
ms_type =
|
||||
cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT ?
|
||||
mst_data : mst_file_data;
|
||||
}
|
||||
else
|
||||
if (sec == SECT_OFF_BSS (objfile))
|
||||
else if (sec == SECT_OFF_BSS (objfile))
|
||||
{
|
||||
ms_type =
|
||||
cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT ?
|
||||
|
||||
@@ -1492,8 +1492,7 @@ add_symbol_file_command (args, from_tty)
|
||||
filename = tilde_expand (arg);
|
||||
my_cleanups = make_cleanup (free, filename);
|
||||
}
|
||||
else
|
||||
if (argcnt == 1)
|
||||
else if (argcnt == 1)
|
||||
{
|
||||
/* The second argument is always the text address at which
|
||||
to load the program. */
|
||||
@@ -1510,11 +1509,9 @@ add_symbol_file_command (args, from_tty)
|
||||
{
|
||||
if (strcmp (arg, "-mapped") == 0)
|
||||
flags |= OBJF_MAPPED;
|
||||
else
|
||||
if (strcmp (arg, "-readnow") == 0)
|
||||
else if (strcmp (arg, "-readnow") == 0)
|
||||
flags |= OBJF_READNOW;
|
||||
else
|
||||
if (strcmp (arg, "-s") == 0)
|
||||
else if (strcmp (arg, "-s") == 0)
|
||||
{
|
||||
if (section_index >= SECT_OFF_MAX)
|
||||
error ("Too many sections specified.");
|
||||
|
||||
Reference in New Issue
Block a user