aboutsummaryrefslogtreecommitdiff
path: root/ld/mpw-idtmips.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1997-06-16 16:56:22 +0000
committerIan Lance Taylor <ian@airs.com>1997-06-16 16:56:22 +0000
commitf4ae97e1bdfeddfb9ea2f006f1b6e18bc94ecbad (patch)
tree87eba87675e5078217fba6030bd86fffae824734 /ld/mpw-idtmips.c
parent02fbf07071bd56309558bbcfe3edb7b0c310be2a (diff)
downloadgdb-f4ae97e1bdfeddfb9ea2f006f1b6e18bc94ecbad.zip
gdb-f4ae97e1bdfeddfb9ea2f006f1b6e18bc94ecbad.tar.gz
gdb-f4ae97e1bdfeddfb9ea2f006f1b6e18bc94ecbad.tar.bz2
Mon Jun 16 12:49:36 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
* ldlang.c (lang_place_undefineds): Add \n in einfo call. (lang_size_sections): Likewise. * ldlex.l: Likewise. * emultempl/aix.em (gld${EMULATION_NAME}_read_file): Likewise. * emultempl/mipsecoff.em (gld${EMULATION_NAME}_after_open): Likewise. (check_sections): Likewise. (gld${EMULATION_NAME}_after_allocation): Likewise. * emultempl/pe.em (gld_$${EMULATION_NAME}_before_allocation): Likewise. * mpw-eppcmac.c (gldppcmacos_read_file): Likewise. * mpw-idtmips.c (gldmipsidt_after_open): Likewise. (check_sections): Likewise. (gldmipsidt_after_allocation): Likewise.
Diffstat (limited to 'ld/mpw-idtmips.c')
-rw-r--r--ld/mpw-idtmips.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/mpw-idtmips.c b/ld/mpw-idtmips.c
index 554f9a8..b8450e0 100644
--- a/ld/mpw-idtmips.c
+++ b/ld/mpw-idtmips.c
@@ -90,7 +90,7 @@ gldmipsidt_after_open ()
|| ! bfd_set_section_alignment (abfd, relsec, 2)
|| ! bfd_set_section_size (abfd, relsec,
datasec->reloc_count * 4))
- einfo ("%F%B: can not create .rel.sdata section: %E");
+ einfo ("%F%B: can not create .rel.sdata section: %E\n");
}
/* Double check that all other data sections are empty, as is
@@ -111,7 +111,7 @@ check_sections (abfd, sec, sdatasec)
if ((bfd_get_section_flags (abfd, sec) & SEC_CODE) == 0
&& sec != (asection *) sdatasec
&& sec->reloc_count != 0)
- einfo ("%F%X: section %s has relocs; can not use --embedded-relocs",
+ einfo ("%F%X: section %s has relocs; can not use --embedded-relocs\n",
abfd, bfd_get_section_name (abfd, sec));
}
@@ -146,10 +146,10 @@ gldmipsidt_after_allocation ()
&errmsg))
{
if (errmsg == NULL)
- einfo ("%B%X: can not create runtime reloc information: %E",
+ einfo ("%B%X: can not create runtime reloc information: %E\n",
abfd);
else
- einfo ("%X%B: can not create runtime reloc information: %s",
+ einfo ("%X%B: can not create runtime reloc information: %s\n",
abfd, errmsg);
}
}