• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

修订版e8d3ff83725ac877baf0e48b880a6e48468441b1 (tree)
时间2002-07-07 18:40:08
作者Alan Modra <amodra@gmai...>
CommiterAlan Modra

Log Message

* ldlang.c (print_wild_statement): Fix output formatting.

更改概述

差异

--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,9 @@
1+2002-07-07 Alan Modra <amodra@bigpond.net.au>
2+
3+ Merge from mainline.
4+ 2002-07-05 Alan Modra <amodra@bigpond.net.au>
5+ * ldlang.c (print_wild_statement): Fix output formatting.
6+
17 2002-05-09 Alan Modra <amodra@bigpond.net.au>
28
39 Merge from mainline.
--- a/ld/ldlang.c
+++ b/ld/ldlang.c
@@ -2492,10 +2492,10 @@ print_wild_statement (w, os)
24922492 if (sec->spec.exclude_name_list != NULL)
24932493 {
24942494 name_list *tmp;
2495- minfo ("EXCLUDE_FILE ( %s", sec->spec.exclude_name_list->name);
2495+ minfo ("EXCLUDE_FILE(%s", sec->spec.exclude_name_list->name);
24962496 for (tmp = sec->spec.exclude_name_list->next; tmp; tmp = tmp->next)
2497- minfo (", %s", tmp->name);
2498- minfo (")");
2497+ minfo (" %s", tmp->name);
2498+ minfo (") ");
24992499 }
25002500 if (sec->spec.name != NULL)
25012501 minfo ("%s", sec->spec.name);
@@ -2503,6 +2503,8 @@ print_wild_statement (w, os)
25032503 minfo ("*");
25042504 if (sec->spec.sorted)
25052505 minfo (")");
2506+ if (sec->next)
2507+ minfo (" ");
25062508 }
25072509 minfo (")");
25082510