diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2000-09-29 11:18:18 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2000-09-29 11:18:18 +0000 |
commit | 4de2d33d1b8c5f1c14d957aca252d83a0b74f5a3 (patch) | |
tree | d2dbb486231bde01036ca84fa0e454d645635031 /ld/ldctor.c | |
parent | ef6acf5b5f793ca2aa13f8c06db61c423fdc2775 (diff) | |
download | gdb-4de2d33d1b8c5f1c14d957aca252d83a0b74f5a3.zip gdb-4de2d33d1b8c5f1c14d957aca252d83a0b74f5a3.tar.gz gdb-4de2d33d1b8c5f1c14d957aca252d83a0b74f5a3.tar.bz2 |
2000-09-29 Kazu Hirata <kazu@hxi.com>
* ldcref.c: Fix formatting.
* ldctor.c: Likewise.
* ldemul.c: Likewise.
* ldexp.c: Likewise.
* ldfile.c: Likewise.
* ldlang.c: Likewise.
Diffstat (limited to 'ld/ldctor.c')
-rw-r--r-- | ld/ldctor.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ld/ldctor.c b/ld/ldctor.c index 0a434b8..6e5eace 100644 --- a/ld/ldctor.c +++ b/ld/ldctor.c @@ -1,8 +1,8 @@ /* ldctor.c -- constructor support routines - Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 1998 + Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 2000 Free Software Foundation, Inc. By Steve Chamberlain <sac@cygnus.com> - + This file is part of GLD, the Gnu Linker. GLD is free software; you can redistribute it and/or modify @@ -86,7 +86,8 @@ ldctor_add_set_entry (h, reloc, name, section, value) { if (p->reloc != reloc) { - einfo (_("%P%X: Different relocs used in set %s\n"), h->root.string); + einfo (_("%P%X: Different relocs used in set %s\n"), + h->root.string); return; } @@ -136,7 +137,7 @@ ctor_prio (name) while (*name == '_') ++name; - if (strncmp (name, "GLOBAL_", sizeof "GLOBAL_" - 1) != 0) + if (strncmp (name, "GLOBAL_", sizeof "GLOBAL_" - 1) != 0) return -1; name += sizeof "GLOBAL_" - 1; @@ -365,7 +366,7 @@ ldctor_build_sets () minfo ("%G\n", e->section->owner, e->section, e->value); } - /* Need SEC_KEEP for --gc-sections */ + /* Need SEC_KEEP for --gc-sections. */ if (! bfd_is_abs_section (e->section)) e->section->flags |= SEC_KEEP; |