ld whitespace fixes
[deliverable/binutils-gdb.git] / ld / emultempl / m68kelf.em
index b71052d50718ba10417dc8509ae74b7339838d24..de4ef7d31e8c17c972f9666d8a88849f59ca62f6 100644 (file)
@@ -1,5 +1,5 @@
 # This shell script emits a C file. -*- C -*-
-#   Copyright (C) 2000-2015 Free Software Foundation, Inc.
+#   Copyright (C) 2000-2017 Free Software Foundation, Inc.
 #   Written by Michael Sokolov <msokolov@ivan.Harhan.ORG>, based on armelf.em
 #
 # This file is part of the GNU Binutils.
@@ -85,7 +85,8 @@ m68k_elf_after_open (void)
             COFF and ELF.  */
          if (bfd_get_flavour (abfd) != bfd_target_coff_flavour
              && bfd_get_flavour (abfd) != bfd_target_elf_flavour)
-           einfo ("%F%B: all input objects must be COFF or ELF for --embedded-relocs\n");
+           einfo (_("%F%B: all input objects must be COFF or ELF "
+                    "for --embedded-relocs\n"));
 
          datasec = bfd_get_section_by_name (abfd, ".data");
 
@@ -109,7 +110,7 @@ m68k_elf_after_open (void)
                  || ! bfd_set_section_alignment (abfd, relsec, 2)
                  || ! bfd_set_section_size (abfd, relsec,
                                             datasec->reloc_count * 12))
-               einfo ("%F%B: can not create .emreloc section: %E\n");
+               einfo (_("%F%B: can not create .emreloc section: %E\n"));
            }
 
          /* Double check that all other data sections are empty, as is
@@ -130,7 +131,7 @@ check_sections (bfd *abfd, asection *sec, void *datasec)
   if ((bfd_get_section_flags (abfd, sec) & SEC_DATA)
       && sec != datasec
       && sec->reloc_count != 0)
-    einfo ("%B%X: section %s has relocs; can not use --embedded-relocs\n",
+    einfo (_("%B%X: section %s has relocs; can not use --embedded-relocs\n"),
           abfd, bfd_get_section_name (abfd, sec));
 }
 
@@ -173,10 +174,12 @@ m68k_elf_after_allocation (void)
                                                          &errmsg))
                {
                  if (errmsg == NULL)
-                   einfo ("%B%X: can not create runtime reloc information: %E\n",
+                   einfo (_("%B%X: can not create "
+                            "runtime reloc information: %E\n"),
                           abfd);
                  else
-                   einfo ("%X%B: can not create runtime reloc information: %s\n",
+                   einfo (_("%X%B: can not create "
+                            "runtime reloc information: %s\n"),
                           abfd, errmsg);
                }
            }
@@ -187,10 +190,12 @@ m68k_elf_after_allocation (void)
                                                           &errmsg))
                {
                  if (errmsg == NULL)
-                   einfo ("%B%X: can not create runtime reloc information: %E\n",
+                   einfo (_("%B%X: can not create "
+                            "runtime reloc information: %E\n"),
                           abfd);
                  else
-                   einfo ("%X%B: can not create runtime reloc information: %s\n",
+                   einfo (_("%X%B: can not create "
+                            "runtime reloc information: %s\n"),
                           abfd, errmsg);
                }
            }
@@ -230,15 +235,15 @@ PARSE_AND_LIST_OPTIONS='
 PARSE_AND_LIST_ARGS_CASES='
     case OPTION_GOT:
       if (strcmp (optarg, "target") == 0)
-        got_handling = GOT_HANDLING_TARGET_DEFAULT;
+       got_handling = GOT_HANDLING_TARGET_DEFAULT;
       else if (strcmp (optarg, "single") == 0)
-        got_handling = 0;
+       got_handling = 0;
       else if (strcmp (optarg, "negative") == 0)
-        got_handling = 1;
+       got_handling = 1;
       else if (strcmp (optarg, "multigot") == 0)
-        got_handling = 2;
+       got_handling = 2;
       else
-        einfo (_("Unrecognized --got argument '\''%s'\''.\n"), optarg);
+       einfo (_("Unrecognized --got argument '\''%s'\''.\n"), optarg);
       break;
 '
 
This page took 0.026481 seconds and 4 git commands to generate.