bfd_section_* macros
[deliverable/binutils-gdb.git] / sim / common / sim-load.c
index c198027824df3348b8c2083ffc041ff234b5be29..ff06497d5c6505a2962609f33b1d659b2f206ec8 100644 (file)
@@ -101,7 +101,7 @@ sim_load_file (SIM_DESC sd, const char *myname, host_callback *callback,
        {
          bfd_size_type size;
 
-         size = bfd_get_section_size (s);
+         size = bfd_section_size (s);
          if (size > 0)
            {
              unsigned char *buffer;
@@ -119,13 +119,13 @@ sim_load_file (SIM_DESC sd, const char *myname, host_callback *callback,
                  return NULL;
                }
              if (lma_p)
-               lma = bfd_section_lma (result_bfd, s);
+               lma = bfd_section_lma (s);
              else
-               lma = bfd_section_vma (result_bfd, s);
+               lma = bfd_section_vma (s);
              if (verbose_p)
                {
                  xprintf (callback, "Loading section %s, size 0x%lx %s ",
-                          bfd_get_section_name (result_bfd, s),
+                          bfd_section_name (s),
                           (unsigned long) size,
                           (lma_p ? "lma" : "vma"));
                  xprintf_bfd_vma (callback, lma);
This page took 0.029198 seconds and 4 git commands to generate.