Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / mmo.c
index f5b3d2eb6fea96dbf1db74e80414e67b76ea9057..6a3e255803babe760cde39b45afaa3b6c38ac11a 100644 (file)
--- a/bfd/mmo.c
+++ b/bfd/mmo.c
@@ -465,7 +465,7 @@ mmo_make_section (bfd *abfd, const char *secname)
        {
          _bfd_error_handler
            /* xgettext:c-format */
-           (_("%pB: No core to allocate section name %s\n"),
+           (_("%pB: no core to allocate section name %s"),
             abfd, secname);
          bfd_set_error (bfd_error_system_call);
          return NULL;
@@ -541,7 +541,7 @@ mmo_object_p (bfd *abfd)
     {
       _bfd_error_handler
        /* xgettext:c-format */
-       (_("%pB: No core to allocate a symbol %d bytes long\n"),
+       (_("%pB: no core to allocate a symbol %d bytes long"),
         abfd, abfd->tdata.mmo_data->max_symbol_length);
       goto bad_final;
     }
@@ -956,8 +956,8 @@ mmo_write_loc_chunk (bfd *abfd, bfd_vma vma, const bfd_byte *loc,
          _bfd_error_handler
            /* xgettext:c-format */
            (_("%pB: attempt to emit contents at non-multiple-of-4"
-              " address %#Lx"),
-            abfd, vma);
+              " address %#" PRIx64 ""),
+            abfd, (uint64_t) vma);
          bfd_set_error (bfd_error_bad_value);
          return FALSE;
        }
@@ -2983,7 +2983,7 @@ mmo_write_symbols_and_terminator (bfd *abfd)
 
            _bfd_error_handler
              /* xgettext:c-format */
-             (_("%pB: Bad symbol definition: `Main' set to %s rather"
+             (_("%pB: bad symbol definition: `Main' set to %s rather"
                 " than the start address %s\n"),
               abfd, vmas_main, vmas_start);
            bfd_set_error (bfd_error_bad_value);
@@ -3239,14 +3239,14 @@ mmo_write_object_contents (bfd *abfd)
               global registers.  */
            _bfd_error_handler
              /* xgettext:c-format */
-             (_("%pB: too many initialized registers; section length %Ld"),
-              abfd, sec->size);
+             (_("%pB: too many initialized registers; section length %" PRId64),
+              abfd, (int64_t) sec->size);
          else
            _bfd_error_handler
              /* xgettext:c-format */
              (_("%pB: invalid start address for initialized registers of"
-                " length %Ld: %#Lx"),
-              abfd, sec->size, sec->vma);
+                " length %" PRId64 ": %#" PRIx64),
+              abfd, (int64_t) sec->size, (uint64_t) sec->vma);
 
          return FALSE;
        }
@@ -3318,6 +3318,7 @@ mmo_write_object_contents (bfd *abfd)
 #define mmo_section_already_linked \
   _bfd_generic_section_already_linked
 #define mmo_bfd_define_common_symbol bfd_generic_define_common_symbol
+#define mmo_bfd_link_hide_symbol _bfd_generic_link_hide_symbol
 #define mmo_bfd_define_start_stop bfd_generic_define_start_stop
 
 /* We want to copy time of creation, otherwise we'd use
This page took 0.024554 seconds and 4 git commands to generate.