gdb/testsuite: Fix race condition in gdb.base/skip.exp
[deliverable/binutils-gdb.git] / bfd / srec.c
index ac438e8c25c4dec11ff94e11bea50515fa7df584..a370b775bc90c0d89906a991c681a3adf599474e 100644 (file)
@@ -1,5 +1,5 @@
 /* BFD back-end for s-record objects.
-   Copyright (C) 1990-2018 Free Software Foundation, Inc.
+   Copyright (C) 1990-2020 Free Software Foundation, Inc.
    Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
 
    This file is part of BFD, the Binary File Descriptor library.
@@ -257,7 +257,7 @@ srec_bad_byte (bfd *abfd,
        }
       _bfd_error_handler
        /* xgettext:c-format */
-       (_("%pB:%d: Unexpected character `%s' in S-record file\n"),
+       (_("%pB:%d: unexpected character `%s' in S-record file"),
         abfd, lineno, buf);
       bfd_set_error (bfd_error_bad_value);
     }
@@ -485,7 +485,7 @@ srec_scan (bfd *abfd)
            if (bytes < min_bytes)
              {
                /* xgettext:c-format */
-               _bfd_error_handler (_("%pB:%d: byte count %d too small\n"),
+               _bfd_error_handler (_("%pB:%d: byte count %d too small"),
                                    abfd, lineno, bytes);
                bfd_set_error (bfd_error_bad_value);
                goto error_return;
@@ -578,7 +578,7 @@ srec_scan (bfd *abfd)
                  {
                    _bfd_error_handler
                      /* xgettext:c-format */
-                     (_("%pB:%d: Bad checksum in S-record file\n"),
+                     (_("%pB:%d: bad checksum in S-record file"),
                       abfd, lineno);
                    bfd_set_error (bfd_error_bad_value);
                    goto error_return;
@@ -612,7 +612,7 @@ srec_scan (bfd *abfd)
                  {
                    _bfd_error_handler
                      /* xgettext:c-format */
-                     (_("%pB:%d: Bad checksum in S-record file\n"),
+                     (_("%pB:%d: bad checksum in S-record file"),
                       abfd, lineno);
                    bfd_set_error (bfd_error_bad_value);
                    goto error_return;
@@ -885,7 +885,7 @@ srec_set_section_contents (bfd *abfd,
                           file_ptr offset,
                           bfd_size_type bytes_to_do)
 {
-  int opb = bfd_octets_per_byte (abfd);
+  int opb = bfd_octets_per_byte (abfd, NULL);
   tdata_type *tdata = abfd->tdata.srec_data;
   srec_data_list_type *entry;
 
@@ -1053,7 +1053,8 @@ srec_write_section (bfd *abfd,
       if (octets_this_chunk > _bfd_srec_len)
        octets_this_chunk = _bfd_srec_len;
 
-      address = list->where + octets_written / bfd_octets_per_byte (abfd);
+      address = list->where + (octets_written
+                              / bfd_octets_per_byte (abfd, NULL));
 
       if (! srec_write_record (abfd,
                               tdata->type,
@@ -1275,9 +1276,11 @@ srec_print_symbol (bfd *abfd,
 #define srec_bfd_lookup_section_flags            bfd_generic_lookup_section_flags
 #define srec_bfd_merge_sections                          bfd_generic_merge_sections
 #define srec_bfd_is_group_section                bfd_generic_is_group_section
+#define srec_bfd_group_name                      bfd_generic_group_name
 #define srec_bfd_discard_group                   bfd_generic_discard_group
 #define srec_section_already_linked              _bfd_generic_section_already_linked
 #define srec_bfd_define_common_symbol            bfd_generic_define_common_symbol
+#define srec_bfd_link_hide_symbol                _bfd_generic_link_hide_symbol
 #define srec_bfd_define_start_stop               bfd_generic_define_start_stop
 #define srec_bfd_link_hash_table_create                  _bfd_generic_link_hash_table_create
 #define srec_bfd_link_add_symbols                _bfd_generic_link_add_symbols
This page took 0.028885 seconds and 4 git commands to generate.