* ldlang.c (print_wild_statement): Fix output formatting.
This commit is contained in:
parent
6d0d2cd21e
commit
34786259b8
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-07-05 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* ldlang.c (print_wild_statement): Fix output formatting.
|
||||
|
||||
2002-07-04 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* ldlang.c: (strip_excluded_output_sections): New function.
|
||||
|
|
|
@ -2561,10 +2561,10 @@ print_wild_statement (w, os)
|
|||
if (sec->spec.exclude_name_list != NULL)
|
||||
{
|
||||
name_list *tmp;
|
||||
minfo ("EXCLUDE_FILE ( %s", sec->spec.exclude_name_list->name);
|
||||
minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name);
|
||||
for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next)
|
||||
minfo (", %s", tmp->name);
|
||||
minfo (")");
|
||||
minfo (" %s", tmp->name);
|
||||
minfo (") ");
|
||||
}
|
||||
if (sec->spec.name != NULL)
|
||||
minfo ("%s", sec->spec.name);
|
||||
|
@ -2572,6 +2572,8 @@ print_wild_statement (w, os)
|
|||
minfo ("*");
|
||||
if (sec->spec.sorted)
|
||||
minfo (")");
|
||||
if (sec->next)
|
||||
minfo (" ");
|
||||
}
|
||||
minfo (")");
|
||||
|
||||
|
|
Loading…
Reference in a new issue